OLD | NEW |
---|---|
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "services/video_capture/device_factory_media_to_mojo_adapter.h" | 5 #include "services/video_capture/device_factory_media_to_mojo_adapter.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/strings/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
(...skipping 30 matching lines...) Expand all Loading... | |
41 const EnumerateDeviceDescriptorsCallback& callback) { | 41 const EnumerateDeviceDescriptorsCallback& callback) { |
42 media::VideoCaptureDeviceDescriptors descriptors; | 42 media::VideoCaptureDeviceDescriptors descriptors; |
43 device_factory_->GetDeviceDescriptors(&descriptors); | 43 device_factory_->GetDeviceDescriptors(&descriptors); |
44 callback.Run(descriptors); | 44 callback.Run(descriptors); |
45 } | 45 } |
46 | 46 |
47 void DeviceFactoryMediaToMojoAdapter::GetSupportedFormats( | 47 void DeviceFactoryMediaToMojoAdapter::GetSupportedFormats( |
48 const media::VideoCaptureDeviceDescriptor& device_descriptor, | 48 const media::VideoCaptureDeviceDescriptor& device_descriptor, |
49 const GetSupportedFormatsCallback& callback) { | 49 const GetSupportedFormatsCallback& callback) { |
50 std::vector<VideoCaptureFormat> result; | 50 std::vector<VideoCaptureFormat> result; |
51 NOTIMPLEMENTED(); | 51 std::vector<media::VideoCaptureFormat> media_formats; |
52 device_factory_->GetSupportedFormats(device_descriptor, &media_formats); | |
53 for (const auto& media_format : media_formats) { | |
54 // The Video Capture Service requires devices to deliver frames either in | |
55 // I420 or MJPEG formats. | |
56 if (media_format.pixel_format != media::PIXEL_FORMAT_I420 && | |
57 media_format.pixel_format != media::PIXEL_FORMAT_MJPEG) | |
mcasas
2016/11/10 01:21:25
nit: {} here.
chfremer
2016/11/10 04:41:35
Done.
| |
58 continue; | |
59 VideoCaptureFormat format; | |
60 format.frame_size = media_format.frame_size; | |
61 format.frame_rate = media_format.frame_rate; | |
62 if (std::find(std::begin(result), std::end(result), format) != | |
63 std::end(result)) { | |
mcasas
2016/11/10 01:21:25
Oops, I missed that here you could use
base::Cont
chfremer
2016/11/10 04:41:35
Done.
| |
64 continue; // Result already contains this format | |
65 } | |
66 result.push_back(format); | |
67 } | |
52 callback.Run(std::move(result)); | 68 callback.Run(std::move(result)); |
53 } | 69 } |
54 | 70 |
55 void DeviceFactoryMediaToMojoAdapter::CreateDeviceProxy( | 71 void DeviceFactoryMediaToMojoAdapter::CreateDeviceProxy( |
56 const media::VideoCaptureDeviceDescriptor& device_descriptor, | 72 const media::VideoCaptureDeviceDescriptor& device_descriptor, |
57 mojom::VideoCaptureDeviceProxyRequest proxy_request, | 73 mojom::VideoCaptureDeviceProxyRequest proxy_request, |
58 const CreateDeviceProxyCallback& callback) { | 74 const CreateDeviceProxyCallback& callback) { |
59 if (active_devices_.find(device_descriptor) != active_devices_.end()) { | 75 if (active_devices_.find(device_descriptor) != active_devices_.end()) { |
60 // The requested device is already in use. | 76 // The requested device is already in use. |
61 // Revoke the access and close the device, then bind to the new request. | 77 // Revoke the access and close the device, then bind to the new request. |
(...skipping 30 matching lines...) Expand all Loading... | |
92 callback.Run(mojom::DeviceAccessResultCode::SUCCESS); | 108 callback.Run(mojom::DeviceAccessResultCode::SUCCESS); |
93 } | 109 } |
94 | 110 |
95 void DeviceFactoryMediaToMojoAdapter::OnClientConnectionErrorOrClose( | 111 void DeviceFactoryMediaToMojoAdapter::OnClientConnectionErrorOrClose( |
96 const media::VideoCaptureDeviceDescriptor& descriptor) { | 112 const media::VideoCaptureDeviceDescriptor& descriptor) { |
97 active_devices_[descriptor].device_proxy->Stop(); | 113 active_devices_[descriptor].device_proxy->Stop(); |
98 active_devices_.erase(descriptor); | 114 active_devices_.erase(descriptor); |
99 } | 115 } |
100 | 116 |
101 } // namespace video_capture | 117 } // namespace video_capture |
OLD | NEW |