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/video/capture/video_capture_device_factory.h" | 5 #include "media/video/capture/video_capture_device_factory.h" |
6 | 6 |
7 #include "base/command_line.h" | |
8 #include "media/base/media_switches.h" | |
9 #include "media/video/capture/fake_video_capture_device_factory.h" | |
10 #include "media/video/capture/file_video_capture_device_factory.h" | |
11 | |
12 #if defined(OS_MACOSX) | |
13 #include "media/video/capture/mac/video_capture_device_factory_mac.h" | |
14 #endif | |
15 | |
7 namespace media { | 16 namespace media { |
8 | 17 |
18 // static | |
19 scoped_ptr<VideoCaptureDeviceFactory> | |
20 VideoCaptureDeviceFactory::CreateFactory() { | |
21 const CommandLine* command_line = CommandLine::ForCurrentProcess(); | |
22 // Use a Fake or File Video Device Factory if the command line flags are | |
23 // present, otherwise use the normal, platform-dependent, device factory. | |
24 if (command_line->HasSwitch(switches::kUseFakeDeviceForMediaStream)) { | |
25 if (command_line->HasSwitch(switches::kUseFileForFakeVideoCapture)) { | |
26 return scoped_ptr<VideoCaptureDeviceFactory>(new | |
27 media::FileVideoCaptureDeviceFactory()); | |
28 } else { | |
29 return scoped_ptr<VideoCaptureDeviceFactory>(new | |
30 media::FakeVideoCaptureDeviceFactory()); | |
31 } | |
32 } else { | |
33 #if defined(OS_MACOSX) | |
34 return scoped_ptr<VideoCaptureDeviceFactory>(new | |
35 VideoCaptureDeviceFactoryMac()); | |
36 #else | |
37 return scoped_ptr<VideoCaptureDeviceFactory>(new | |
38 VideoCaptureDeviceFactory()); | |
39 #endif | |
40 } | |
41 } | |
42 | |
9 VideoCaptureDeviceFactory::VideoCaptureDeviceFactory() { | 43 VideoCaptureDeviceFactory::VideoCaptureDeviceFactory() { |
10 thread_checker_.DetachFromThread(); | 44 thread_checker_.DetachFromThread(); |
11 }; | 45 } |
46 | |
47 VideoCaptureDeviceFactory::~VideoCaptureDeviceFactory() {} | |
12 | 48 |
13 scoped_ptr<VideoCaptureDevice> VideoCaptureDeviceFactory::Create( | 49 scoped_ptr<VideoCaptureDevice> VideoCaptureDeviceFactory::Create( |
14 const VideoCaptureDevice::Name& device_name) { | 50 const VideoCaptureDevice::Name& device_name) { |
15 DCHECK(thread_checker_.CalledOnValidThread()); | 51 DCHECK(thread_checker_.CalledOnValidThread()); |
52 // TODO(mcasas): Remove the #if parts when all platforms have splitted the | |
perkj_chrome
2014/05/06 11:32:43
You don't need all these Ifdefs now right? All me
mcasas
2014/05/06 12:47:21
Done.
| |
53 // VideoCaptureDevice into VideoCaptureDevice and VideoCaptureDeviceFactory. | |
54 // Remove as well the call to the VideoCaptureDevice static method. | |
55 #if !defined(OS_MACOSX) | |
16 return scoped_ptr<VideoCaptureDevice>( | 56 return scoped_ptr<VideoCaptureDevice>( |
17 VideoCaptureDevice::Create(device_name)); | 57 VideoCaptureDevice::Create(device_name)); |
58 #else | |
59 return scoped_ptr<VideoCaptureDevice>(); | |
60 #endif | |
18 } | 61 } |
19 | 62 |
20 void VideoCaptureDeviceFactory::GetDeviceNames( | 63 void VideoCaptureDeviceFactory::GetDeviceNames( |
21 VideoCaptureDevice::Names* device_names) { | 64 VideoCaptureDevice::Names* device_names) { |
22 DCHECK(thread_checker_.CalledOnValidThread()); | 65 DCHECK(thread_checker_.CalledOnValidThread()); |
66 // See TODO in Create(). | |
67 #if !defined(OS_MACOSX) | |
23 VideoCaptureDevice::GetDeviceNames(device_names); | 68 VideoCaptureDevice::GetDeviceNames(device_names); |
69 #endif | |
24 } | 70 } |
25 | 71 |
26 void VideoCaptureDeviceFactory::GetDeviceSupportedFormats( | 72 void VideoCaptureDeviceFactory::GetDeviceSupportedFormats( |
27 const VideoCaptureDevice::Name& device, | 73 const VideoCaptureDevice::Name& device, |
28 VideoCaptureFormats* supported_formats) { | 74 VideoCaptureFormats* supported_formats) { |
29 DCHECK(thread_checker_.CalledOnValidThread()); | 75 DCHECK(thread_checker_.CalledOnValidThread()); |
76 // See TODO in Create(). | |
77 #if !defined(OS_MACOSX) | |
30 VideoCaptureDevice::GetDeviceSupportedFormats(device, supported_formats); | 78 VideoCaptureDevice::GetDeviceSupportedFormats(device, supported_formats); |
79 #endif | |
31 } | 80 } |
32 | 81 |
33 } // namespace media | 82 } // namespace media |
OLD | NEW |