Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(612)

Side by Side Diff: media/capture/video/chromeos/video_capture_device_arc_chromeos.h

Issue 2837273004: media: add video capture device for ARC++ camera HAL v3 (Closed)
Patch Set: address wuchengli@'s comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef MEDIA_CAPTURE_VIDEO_CHROMEOS_VIDEO_CAPTURE_DEVICE_CHROMEOS_H_
6 #define MEDIA_CAPTURE_VIDEO_CHROMEOS_VIDEO_CAPTURE_DEVICE_CHROMEOS_H_
7
8 #include <stdint.h>
9
10 #include <memory>
11 #include <string>
12
13 #include "base/macros.h"
14 #include "base/threading/thread.h"
15 #include "media/capture/video/chromeos/mojo/arc_camera3.mojom.h"
16 #include "media/capture/video/video_capture_device.h"
17 #include "media/capture/video/video_capture_device_descriptor.h"
18 #include "media/capture/video_capture_types.h"
19
20 namespace display {
21
22 class Display;
23
24 } // namespace display
25
26 namespace media {
27
28 class CameraHalDelegate;
29 class CameraDeviceDelegate;
30
31 // Implementation of VideoCaptureDevice for ChromeOS with ARC++ camera HALv3.
32 class CAPTURE_EXPORT VideoCaptureDeviceArcChromeOS final
33 : public VideoCaptureDevice {
34 public:
35 // Converts the HAL pixel format |from| to Chromium pixel format. Returns
36 // PIXEL_FORMAT_UNKNOWN if |from| is not supported.
37 static VideoPixelFormat PixFormatHalToChromium(
38 arc::mojom::HalPixelFormat from);
39
40 // Converts the Chromium pixel format |from| to DRM pixel format. Returns 0
41 // if |from| is not supported.
42 static uint32_t PixFormatChromiumToDrm(VideoPixelFormat from);
43
44 VideoCaptureDeviceArcChromeOS(
45 scoped_refptr<base::SingleThreadTaskRunner> ui_task_runner,
46 const VideoCaptureDeviceDescriptor& device_descriptor,
47 scoped_refptr<CameraHalDelegate> camera_hal_delegate);
48
49 ~VideoCaptureDeviceArcChromeOS() final;
50
51 // VideoCaptureDevice implementation.
52 void AllocateAndStart(const VideoCaptureParams& params,
53 std::unique_ptr<Client> client) final;
54 void StopAndDeAllocate() final;
55 void TakePhoto(TakePhotoCallback callback) final;
56 void GetPhotoCapabilities(GetPhotoCapabilitiesCallback callback) final;
57 void SetPhotoOptions(mojom::PhotoSettingsPtr settings,
58 SetPhotoOptionsCallback callback) final;
59
60 private:
61 const VideoCaptureDeviceDescriptor device_descriptor_;
62
63 // A reference to the CameraHalDelegate instance in the VCD factory. This is
64 // used by AllocateAndStart to query camera info and create the camera device.
65 const scoped_refptr<CameraHalDelegate> camera_hal_delegate_;
66
67 // A reference to the thread that all the VideoCaptureDevice interface methods
68 // are called.
chfremer 2017/05/24 23:36:43 ... are expected to be called on?
jcliang 2017/05/25 14:23:47 Done.
69 const scoped_refptr<base::SingleThreadTaskRunner> capture_task_runner_;
70
71 // The thread that all the Mojo operations of |camera_device_delegate_| take
72 // place. Started in AllocateAndStart and stopped in StopAndDeAllocate, where
73 // the access to the base::Thread methods are sequenced on
74 // |capture_task_runner_|.
75 base::Thread device_thread_;
chfremer 2017/05/24 23:36:43 At this point, as a reader, I do not understand wh
jcliang 2017/05/25 14:23:47 I've thought about this. The reason that I keep th
chfremer 2017/05/25 17:13:07 Thanks. That sounds reasonable.
76
77 // Internal delegate doing the actual capture setting, buffer allocation and
78 // circulation with the camera HAL. Created on |module_task_runner_| of
79 // |camera_hal_delegate_| in OnOpenedDevice and deleted in StopAndDeAllocate
chfremer 2017/05/24 23:36:43 Isn't this created in AllocateAndStart()?
jcliang 2017/05/25 14:23:48 Done.
80 // on |capture_task_runner_|. The creation and deletion of
81 // |camera_device_delegate_| is serialized through a WaitableEvent.
82 // All methods of |camera_device_delegate_| operate on |device_thread_|.
83 scoped_refptr<CameraDeviceDelegate> camera_device_delegate_;
84
85 class ScreenObserverDelegate;
86
87 void SetRotation(int rotation);
88 void SetDisplayRotation(const display::Display& display);
chfremer 2017/05/24 23:36:43 Please move class forward declaration and methods
jcliang 2017/05/25 14:23:47 Done.
89
90 scoped_refptr<ScreenObserverDelegate> screen_observer_delegate_;
91 const VideoFacingMode lens_facing_;
92 const int camera_orientation_;
93 // Whether the incoming frames should rotate when the device rotates.
94 const bool rotates_with_device_;
95
96 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoCaptureDeviceArcChromeOS);
97 };
98
99 } // namespace media
100
101 #endif // MEDIA_CAPTURE_VIDEO_CHROMEOS_VIDEO_CAPTURE_DEVICE_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698