andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
| 3 | * |
| 4 | * Use of this source code is governed by a BSD-style license |
| 5 | * that can be found in the LICENSE file in the root of the source |
| 6 | * tree. An additional intellectual property rights grant can be found |
| 7 | * in the file PATENTS. All contributing project authors may |
| 8 | * be found in the AUTHORS file in the root of the source tree. |
| 9 | */ |
| 10 | |
Henrik Kjellander | e22c7db | 2015-11-12 11:46:09 | [diff] [blame] | 11 | #include "webrtc/modules/video_capture/video_capture_factory.h" |
pbos@webrtc.org | 87c29b5 | 2013-07-12 10:03:52 | [diff] [blame] | 12 | |
| 13 | #include "webrtc/modules/video_capture/video_capture_impl.h" |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 14 | |
Peter Boström | aec92fa | 2016-03-21 15:44:31 | [diff] [blame] | 15 | namespace webrtc { |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 16 | |
Peter Boström | aec92fa | 2016-03-21 15:44:31 | [diff] [blame] | 17 | rtc::scoped_refptr<VideoCaptureModule> VideoCaptureFactory::Create( |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 18 | const char* deviceUniqueIdUTF8) { |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame] | 19 | #if defined(ANDROID) |
| 20 | return nullptr; |
| 21 | #else |
nisse | 469b3a4 | 2016-12-12 08:22:56 | [diff] [blame] | 22 | return videocapturemodule::VideoCaptureImpl::Create(deviceUniqueIdUTF8); |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame] | 23 | #endif |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 24 | } |
| 25 | |
Peter Boström | aec92fa | 2016-03-21 15:44:31 | [diff] [blame] | 26 | rtc::scoped_refptr<VideoCaptureModule> VideoCaptureFactory::Create( |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 27 | VideoCaptureExternal*& externalCapture) { |
nisse | 469b3a4 | 2016-12-12 08:22:56 | [diff] [blame] | 28 | return videocapturemodule::VideoCaptureImpl::Create(externalCapture); |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 29 | } |
| 30 | |
nisse | 469b3a4 | 2016-12-12 08:22:56 | [diff] [blame] | 31 | VideoCaptureModule::DeviceInfo* VideoCaptureFactory::CreateDeviceInfo() { |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame] | 32 | #if defined(ANDROID) |
| 33 | return nullptr; |
| 34 | #else |
nisse | 469b3a4 | 2016-12-12 08:22:56 | [diff] [blame] | 35 | return videocapturemodule::VideoCaptureImpl::CreateDeviceInfo(); |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame] | 36 | #endif |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 37 | } |
| 38 | |
pbos@webrtc.org | 3b89e10 | 2013-07-03 15:12:26 | [diff] [blame] | 39 | } // namespace webrtc |