| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "media/capture/video/fake_video_capture_device_factory.h" | 5 #include "media/capture/video/fake_video_capture_device_factory.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/strings/string_number_conversions.h" | 8 #include "base/strings/string_number_conversions.h" |
| 9 #include "base/strings/string_split.h" | 9 #include "base/strings/string_split.h" |
| 10 #include "base/strings/string_tokenizer.h" | 10 #include "base/strings/string_tokenizer.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "base/strings/stringprintf.h" | 12 #include "base/strings/stringprintf.h" |
| 13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "media/base/media_switches.h" | 14 #include "media/base/media_switches.h" |
| 15 | 15 |
| 16 namespace { |
| 17 |
| 18 // Factory has one device by default; I420. If there are more, the second device |
| 19 // is of Y16 format while the rest are I420. |
| 20 media::VideoPixelFormat GetPixelFormat(const std::string& device_id) { |
| 21 return (device_id == "/dev/video1") ? media::PIXEL_FORMAT_Y16 |
| 22 : media::PIXEL_FORMAT_I420; |
| 23 } |
| 24 } |
| 25 |
| 16 namespace media { | 26 namespace media { |
| 17 | 27 |
| 18 // Cap the frame rate command line input to reasonable values. | 28 // Cap the frame rate command line input to reasonable values. |
| 19 static const float kFakeCaptureMinFrameRate = 5.0f; | 29 static const float kFakeCaptureMinFrameRate = 5.0f; |
| 20 static const float kFakeCaptureMaxFrameRate = 60.0f; | 30 static const float kFakeCaptureMaxFrameRate = 60.0f; |
| 21 // Default rate if none is specified as part of the command line. | 31 // Default rate if none is specified as part of the command line. |
| 22 static const float kFakeCaptureDefaultFrameRate = 20.0f; | 32 static const float kFakeCaptureDefaultFrameRate = 20.0f; |
| 33 // Cap the device count command line input to reasonable values. |
| 34 static const int kFakeCaptureMinDeviceCount = 1; |
| 35 static const int kFakeCaptureMaxDeviceCount = 10; |
| 23 | 36 |
| 24 FakeVideoCaptureDeviceFactory::FakeVideoCaptureDeviceFactory() | 37 FakeVideoCaptureDeviceFactory::FakeVideoCaptureDeviceFactory() |
| 25 : number_of_devices_(1), | 38 : number_of_devices_(1), |
| 26 fake_vcd_ownership_(FakeVideoCaptureDevice::BufferOwnership::OWN_BUFFERS), | 39 fake_vcd_ownership_(FakeVideoCaptureDevice::BufferOwnership::OWN_BUFFERS), |
| 27 frame_rate_(kFakeCaptureDefaultFrameRate) {} | 40 frame_rate_(kFakeCaptureDefaultFrameRate) {} |
| 28 | 41 |
| 29 std::unique_ptr<VideoCaptureDevice> FakeVideoCaptureDeviceFactory::CreateDevice( | 42 std::unique_ptr<VideoCaptureDevice> FakeVideoCaptureDeviceFactory::CreateDevice( |
| 30 const VideoCaptureDeviceDescriptor& device_descriptor) { | 43 const VideoCaptureDeviceDescriptor& device_descriptor) { |
| 31 DCHECK(thread_checker_.CalledOnValidThread()); | 44 DCHECK(thread_checker_.CalledOnValidThread()); |
| 32 | 45 |
| 33 parse_command_line(); | 46 if (!command_line_parsed_) { |
| 47 ParseCommandLine(); |
| 48 command_line_parsed_ = true; |
| 49 } |
| 34 | 50 |
| 35 for (int n = 0; n < number_of_devices_; ++n) { | 51 for (int n = 0; n < number_of_devices_; ++n) { |
| 36 std::string possible_id = base::StringPrintf("/dev/video%d", n); | 52 std::string possible_id = base::StringPrintf("/dev/video%d", n); |
| 37 if (device_descriptor.device_id.compare(possible_id) == 0) { | 53 if (device_descriptor.device_id.compare(possible_id) == 0) { |
| 38 return std::unique_ptr<VideoCaptureDevice>( | 54 return std::unique_ptr<VideoCaptureDevice>(new FakeVideoCaptureDevice( |
| 39 new FakeVideoCaptureDevice(fake_vcd_ownership_, frame_rate_)); | 55 fake_vcd_ownership_, frame_rate_, GetPixelFormat(possible_id))); |
| 40 } | 56 } |
| 41 } | 57 } |
| 42 return std::unique_ptr<VideoCaptureDevice>(); | 58 return std::unique_ptr<VideoCaptureDevice>(); |
| 43 } | 59 } |
| 44 | 60 |
| 45 void FakeVideoCaptureDeviceFactory::GetDeviceDescriptors( | 61 void FakeVideoCaptureDeviceFactory::GetDeviceDescriptors( |
| 46 VideoCaptureDeviceDescriptors* device_descriptors) { | 62 VideoCaptureDeviceDescriptors* device_descriptors) { |
| 47 DCHECK(thread_checker_.CalledOnValidThread()); | 63 DCHECK(thread_checker_.CalledOnValidThread()); |
| 48 DCHECK(device_descriptors->empty()); | 64 DCHECK(device_descriptors->empty()); |
| 65 |
| 66 if (!command_line_parsed_) { |
| 67 ParseCommandLine(); |
| 68 command_line_parsed_ = true; |
| 69 } |
| 70 |
| 49 for (int n = 0; n < number_of_devices_; ++n) { | 71 for (int n = 0; n < number_of_devices_; ++n) { |
| 50 device_descriptors->emplace_back(base::StringPrintf("fake_device_%d", n), | 72 device_descriptors->emplace_back(base::StringPrintf("fake_device_%d", n), |
| 51 base::StringPrintf("/dev/video%d", n), | 73 base::StringPrintf("/dev/video%d", n), |
| 52 #if defined(OS_LINUX) | 74 #if defined(OS_LINUX) |
| 53 VideoCaptureApi::LINUX_V4L2_SINGLE_PLANE | 75 VideoCaptureApi::LINUX_V4L2_SINGLE_PLANE |
| 54 #elif defined(OS_MACOSX) | 76 #elif defined(OS_MACOSX) |
| 55 VideoCaptureApi::MACOSX_AVFOUNDATION | 77 VideoCaptureApi::MACOSX_AVFOUNDATION |
| 56 #elif defined(OS_WIN) | 78 #elif defined(OS_WIN) |
| 57 VideoCaptureApi::WIN_DIRECT_SHOW | 79 VideoCaptureApi::WIN_DIRECT_SHOW |
| 58 #elif defined(OS_ANDROID) | 80 #elif defined(OS_ANDROID) |
| 59 VideoCaptureApi::ANDROID_API2_LEGACY | 81 VideoCaptureApi::ANDROID_API2_LEGACY |
| 60 #endif | 82 #endif |
| 61 ); | 83 ); |
| 62 } | 84 } |
| 63 } | 85 } |
| 64 | 86 |
| 65 void FakeVideoCaptureDeviceFactory::GetSupportedFormats( | 87 void FakeVideoCaptureDeviceFactory::GetSupportedFormats( |
| 66 const VideoCaptureDeviceDescriptor& device_descriptor, | 88 const VideoCaptureDeviceDescriptor& device_descriptor, |
| 67 VideoCaptureFormats* supported_formats) { | 89 VideoCaptureFormats* supported_formats) { |
| 68 DCHECK(thread_checker_.CalledOnValidThread()); | 90 DCHECK(thread_checker_.CalledOnValidThread()); |
| 69 const gfx::Size supported_sizes[] = {gfx::Size(320, 240), | 91 const gfx::Size supported_sizes[] = { |
| 70 gfx::Size(640, 480), | 92 gfx::Size(96, 96), gfx::Size(320, 240), gfx::Size(640, 480), |
| 71 gfx::Size(1280, 720), | 93 gfx::Size(1280, 720), gfx::Size(1920, 1080)}; |
| 72 gfx::Size(1920, 1080)}; | |
| 73 supported_formats->clear(); | 94 supported_formats->clear(); |
| 74 for (const auto& size : supported_sizes) { | 95 for (const auto& size : supported_sizes) { |
| 75 supported_formats->push_back( | 96 supported_formats->push_back(VideoCaptureFormat( |
| 76 VideoCaptureFormat(size, frame_rate_, media::PIXEL_FORMAT_I420)); | 97 size, frame_rate_, GetPixelFormat(device_descriptor.device_id))); |
| 77 } | 98 } |
| 78 } | 99 } |
| 79 | 100 |
| 80 // Optional comma delimited parameters to the command line can specify buffer | 101 // Optional comma delimited parameters to the command line can specify buffer |
| 81 // ownership, buffer planarity, and the fake video device FPS. | 102 // ownership, device count, and the fake video devices FPS. |
| 82 // Examples: "ownership=client, planarity=triplanar, fps=60" "fps=30" | 103 // Examples: "ownership=client, device-count=2, fps=60" "fps=30" |
| 83 void FakeVideoCaptureDeviceFactory::parse_command_line() { | 104 void FakeVideoCaptureDeviceFactory::ParseCommandLine() { |
| 84 const std::string option = | 105 const std::string option = |
| 85 base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( | 106 base::CommandLine::ForCurrentProcess()->GetSwitchValueASCII( |
| 86 switches::kUseFakeDeviceForMediaStream); | 107 switches::kUseFakeDeviceForMediaStream); |
| 87 base::StringTokenizer option_tokenizer(option, ", "); | 108 base::StringTokenizer option_tokenizer(option, ", "); |
| 88 option_tokenizer.set_quote_chars("\""); | 109 option_tokenizer.set_quote_chars("\""); |
| 89 | 110 |
| 90 while (option_tokenizer.GetNext()) { | 111 while (option_tokenizer.GetNext()) { |
| 91 std::vector<std::string> param = | 112 std::vector<std::string> param = |
| 92 base::SplitString(option_tokenizer.token(), "=", base::TRIM_WHITESPACE, | 113 base::SplitString(option_tokenizer.token(), "=", base::TRIM_WHITESPACE, |
| 93 base::SPLIT_WANT_NONEMPTY); | 114 base::SPLIT_WANT_NONEMPTY); |
| 94 | 115 |
| 95 if (param.size() != 2u) { | 116 if (param.size() != 2u) { |
| 96 LOG(WARNING) << "Forget a value '" << option << "'? Use name=value for " | 117 LOG(WARNING) << "Forget a value '" << option << "'? Use name=value for " |
| 97 << switches::kUseFakeDeviceForMediaStream << "."; | 118 << switches::kUseFakeDeviceForMediaStream << "."; |
| 98 return; | 119 return; |
| 99 } | 120 } |
| 100 | 121 |
| 101 if (base::EqualsCaseInsensitiveASCII(param.front(), "ownership") && | 122 if (base::EqualsCaseInsensitiveASCII(param.front(), "ownership") && |
| 102 base::EqualsCaseInsensitiveASCII(param.back(), "client")) { | 123 base::EqualsCaseInsensitiveASCII(param.back(), "client")) { |
| 103 fake_vcd_ownership_ = | 124 fake_vcd_ownership_ = |
| 104 FakeVideoCaptureDevice::BufferOwnership::CLIENT_BUFFERS; | 125 FakeVideoCaptureDevice::BufferOwnership::CLIENT_BUFFERS; |
| 105 } else if (base::EqualsCaseInsensitiveASCII(param.front(), "fps")) { | 126 } else if (base::EqualsCaseInsensitiveASCII(param.front(), "fps")) { |
| 106 double fps = 0; | 127 double fps = 0; |
| 107 if (base::StringToDouble(param.back(), &fps)) { | 128 if (base::StringToDouble(param.back(), &fps)) { |
| 108 frame_rate_ = | 129 frame_rate_ = |
| 109 std::max(kFakeCaptureMinFrameRate, static_cast<float>(fps)); | 130 std::max(kFakeCaptureMinFrameRate, static_cast<float>(fps)); |
| 110 frame_rate_ = std::min(kFakeCaptureMaxFrameRate, frame_rate_); | 131 frame_rate_ = std::min(kFakeCaptureMaxFrameRate, frame_rate_); |
| 111 } | 132 } |
| 133 } else if (base::EqualsCaseInsensitiveASCII(param.front(), |
| 134 "device-count")) { |
| 135 unsigned int count = 0; |
| 136 if (base::StringToUint(param.back(), &count)) { |
| 137 number_of_devices_ = std::min( |
| 138 kFakeCaptureMaxDeviceCount, |
| 139 std::max(kFakeCaptureMinDeviceCount, static_cast<int>(count))); |
| 140 } |
| 112 } | 141 } |
| 113 } | 142 } |
| 114 } | 143 } |
| 115 | 144 |
| 116 } // namespace media | 145 } // namespace media |
| OLD | NEW |