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 | |
pbos@webrtc.org | 87c29b5 | 2013-07-12 10:03:52 | [diff] [blame] | 11 | #include "webrtc/modules/video_capture/include/video_capture_factory.h" |
| 12 | |
| 13 | #include "webrtc/modules/video_capture/video_capture_impl.h" |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 14 | |
| 15 | namespace webrtc |
| 16 | { |
| 17 | |
pbos@webrtc.org | f7e44d6 | 2013-04-10 08:23:13 | [diff] [blame] | 18 | VideoCaptureModule* VideoCaptureFactory::Create(const int32_t id, |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 19 | const char* deviceUniqueIdUTF8) { |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame^] | 20 | #if defined(ANDROID) |
| 21 | return nullptr; |
| 22 | #else |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 23 | return videocapturemodule::VideoCaptureImpl::Create(id, deviceUniqueIdUTF8); |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame^] | 24 | #endif |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 25 | } |
| 26 | |
pbos@webrtc.org | f7e44d6 | 2013-04-10 08:23:13 | [diff] [blame] | 27 | VideoCaptureModule* VideoCaptureFactory::Create(const int32_t id, |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 28 | VideoCaptureExternal*& externalCapture) { |
| 29 | return videocapturemodule::VideoCaptureImpl::Create(id, externalCapture); |
| 30 | } |
| 31 | |
| 32 | VideoCaptureModule::DeviceInfo* VideoCaptureFactory::CreateDeviceInfo( |
pbos@webrtc.org | f7e44d6 | 2013-04-10 08:23:13 | [diff] [blame] | 33 | const int32_t id) { |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame^] | 34 | #if defined(ANDROID) |
| 35 | return nullptr; |
| 36 | #else |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 37 | return videocapturemodule::VideoCaptureImpl::CreateDeviceInfo(id); |
perkj | 2ffd023 | 2015-09-21 08:46:33 | [diff] [blame^] | 38 | #endif |
andrew@webrtc.org | b015cbe | 2012-10-22 18:19:23 | [diff] [blame] | 39 | } |
| 40 | |
pbos@webrtc.org | 3b89e10 | 2013-07-03 15:12:26 | [diff] [blame] | 41 | } // namespace webrtc |