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

Unified Diff: media/capture/video/chromeos/video_capture_device_factory_chromeos.cc

Issue 2837273004: media: add video capture device for ARC++ camera HAL v3 (Closed)
Patch Set: RELAND: media: add video capture device for ARC++ camera HAL v3 Created 3 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: media/capture/video/chromeos/video_capture_device_factory_chromeos.cc
diff --git a/media/capture/video/chromeos/video_capture_device_factory_chromeos.cc b/media/capture/video/chromeos/video_capture_device_factory_chromeos.cc
new file mode 100644
index 0000000000000000000000000000000000000000..275d98c10dd7731e82322abdf97cb58492210ca8
--- /dev/null
+++ b/media/capture/video/chromeos/video_capture_device_factory_chromeos.cc
@@ -0,0 +1,95 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "media/capture/video/chromeos/video_capture_device_factory_chromeos.h"
+
+#include "base/files/file_util.h"
+#include "base/memory/ptr_util.h"
+#include "media/capture/video/linux/video_capture_device_factory_linux.h"
+
+namespace media {
+
+VideoCaptureDeviceFactoryChromeOS::VideoCaptureDeviceFactoryChromeOS(
+ scoped_refptr<base::SingleThreadTaskRunner> task_runner_for_screen_observer)
+ : task_runner_for_screen_observer_(task_runner_for_screen_observer),
+ camera_hal_ipc_thread_("CameraHalIpcThread") {}
+
+VideoCaptureDeviceFactoryChromeOS::~VideoCaptureDeviceFactoryChromeOS() {
+ camera_hal_delegate_->Reset();
+ camera_hal_ipc_thread_.Stop();
+}
+
+bool VideoCaptureDeviceFactoryChromeOS::Init() {
+ if (!camera_hal_ipc_thread_.Start()) {
+ LOG(ERROR) << "Module thread failed to start";
+ return false;
+ }
+ camera_hal_delegate_ =
+ new CameraHalDelegate(camera_hal_ipc_thread_.task_runner());
+ return camera_hal_delegate_->StartCameraModuleIpc();
+}
+
+std::unique_ptr<VideoCaptureDevice>
+VideoCaptureDeviceFactoryChromeOS::CreateDevice(
+ const VideoCaptureDeviceDescriptor& device_descriptor) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ DCHECK(camera_hal_delegate_);
+ return camera_hal_delegate_->CreateDevice(task_runner_for_screen_observer_,
+ device_descriptor);
+}
+
+void VideoCaptureDeviceFactoryChromeOS::GetSupportedFormats(
+ const VideoCaptureDeviceDescriptor& device_descriptor,
+ VideoCaptureFormats* supported_formats) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ DCHECK(camera_hal_delegate_);
+ camera_hal_delegate_->GetSupportedFormats(device_descriptor,
+ supported_formats);
+}
+
+void VideoCaptureDeviceFactoryChromeOS::GetDeviceDescriptors(
+ VideoCaptureDeviceDescriptors* device_descriptors) {
+ DCHECK(thread_checker_.CalledOnValidThread());
+ DCHECK(camera_hal_delegate_);
+ camera_hal_delegate_->GetDeviceDescriptors(device_descriptors);
+}
+
+// static
+bool VideoCaptureDeviceFactoryChromeOS::ShouldEnable() {
+ // Checks whether the Chrome OS binary which provides the HAL v3 camera
+ // service is installed on the device. If the binary exists we assume the
+ // device is using the new camera HAL v3 stack.
+ const base::FilePath kArcCamera3Service("/usr/bin/arc_camera3_service");
+ return base::PathExists(kArcCamera3Service);
+}
+
+#if defined(OS_CHROMEOS)
+// static
+VideoCaptureDeviceFactory*
+VideoCaptureDeviceFactory::CreateVideoCaptureDeviceFactory(
+ scoped_refptr<base::SingleThreadTaskRunner>
+ task_runner_for_screen_observer) {
+ // On Chrome OS we have to support two use cases:
+ //
+ // 1. For devices that have the camera HAL v3 service running on Chrome OS,
+ // we use the HAL v3 capture device which VideoCaptureDeviceFactoryChromeOS
+ // provides.
+ // 2. Existing devices that use UVC cameras need to use the V4L2 capture
+ // device which VideoCaptureDeviceFacotoryLinux provides; there are also
+ // some special devices that may never be able to implement a camera HAL
+ // v3.
+ if (VideoCaptureDeviceFactoryChromeOS::ShouldEnable()) {
+ auto factory = base::MakeUnique<VideoCaptureDeviceFactoryChromeOS>(
+ task_runner_for_screen_observer);
+ if (!factory->Init()) {
+ return nullptr;
+ }
+ return factory.release();
+ } else {
+ return new VideoCaptureDeviceFactoryLinux(task_runner_for_screen_observer);
+ }
+}
+#endif
+
+} // namespace media

Powered by Google App Engine
This is Rietveld 408576698