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

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: handle error_msg in Notify 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,
wuchengli 2017/05/05 08:10:55 We discussed offline. Not using const & means the
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 // Internal methods which AllocateAndStart depends on to create a camera
62 // device. OnGotCameraInfo and OnOpenDevice are callbacks provided to the
63 // |camera_hal_delegate_| Mojo IPC calls, and are run on the
64 // |module_task_runner_| of |camera_hal_delegate_|.
65 void OnGotCameraInfo(const VideoCaptureParams& params,
66 std::unique_ptr<Client> client,
67 int32_t result,
68 arc::mojom::CameraInfoPtr camera_info);
69 void OnOpenedDevice(const VideoCaptureParams& params,
70 std::unique_ptr<Client> client,
71 arc::mojom::CameraMetadataPtr static_metadata,
72 int32_t result,
73 arc::mojom::Camera3DeviceOpsPtr device_ops);
74
75 // CreateDeviceOnCaptureThread creates the CameraDeviceDelegate instance and
76 // assigns to |camera_device_delegate_|. This method runs on
77 // |capture_task_runner_| to make sure the access to |camera_device_delegate_|
78 // and |device_thread_| is sequenced.
79 void CreateDeviceOnCaptureThread(
80 const VideoCaptureParams& params,
81 std::unique_ptr<Client> client,
82 arc::mojom::CameraMetadataPtr static_metadata,
83 int32_t result,
84 mojo::InterfacePtrInfo<arc::mojom::Camera3DeviceOps> device_ops_info);
85
86 const VideoCaptureDeviceDescriptor device_descriptor_;
87
88 // A reference to the CameraHalDelegate instance in the VCD factory. This is
89 // used by AllocateAndStart to query camera info and create the camera device.
90 const scoped_refptr<CameraHalDelegate> camera_hal_delegate_;
91
92 // A reference to the thread that all the VideoCaptureDevice interface methods
93 // are called.
94 const scoped_refptr<base::SingleThreadTaskRunner> capture_task_runner_;
95
96 // The thread that all the Mojo operations of |camera_device_delegate_| take
97 // place. Started in CreateDeviceOnCaptureThread and stopped in
98 // StopAndDeAllocate, where the access to the base::Thread methods are
99 // sequenced on |capture_task_runner_|.
100 base::Thread device_thread_;
101
102 // Variable indicating whether VideoCaptureDevice instance is being stopped.
103 // We need |stopping_| to ensure correct behavior because AllocateAndStart is
104 // asynchronous and StopAndDeAllocate may be called between when
105 // AllocateAndStart is called and when |camera_device_delegate_| is actually
106 // created. |stopping_| must only be accessed on |capture_task_runner_|.
107 bool stopping_;
108
109 // Internal delegate doing the actual capture setting, buffer allocation and
110 // circulation with the camera HAL. Created and deleted in the thread where
111 // VideoCaptureDeviceArcChromeOS lives, but otherwise operates on
112 // |device_thread_|.
113 scoped_refptr<CameraDeviceDelegate> camera_device_delegate_;
114
115 class ScreenObserverDelegate;
116
117 void SetRotation(int rotation);
118 void SetDisplayRotation(const display::Display& display);
119
120 scoped_refptr<ScreenObserverDelegate> screen_observer_delegate_;
121 const VideoFacingMode lens_facing_;
122 const int camera_orientation_;
123 // Whether the incoming frames should rotate when the device rotates.
124 const bool rotates_with_device_;
125
126 DISALLOW_IMPLICIT_CONSTRUCTORS(VideoCaptureDeviceArcChromeOS);
127 };
128
129 } // namespace media
130
131 #endif // MEDIA_CAPTURE_VIDEO_CHROMEOS_VIDEO_CAPTURE_DEVICE_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698