wu@webrtc.org | f3f2f6a | 2011-10-19 18:42:17 +0000 | [diff] [blame] | 1 | /* |
leozwang@webrtc.org | 3a39230 | 2012-03-12 21:03:38 +0000 | [diff] [blame] | 2 | * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. |
wu@webrtc.org | f3f2f6a | 2011-10-19 18:42:17 +0000 | [diff] [blame] | 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 | |
niklas.enbom@webrtc.org | 8e3bbed | 2013-07-25 16:55:58 +0000 | [diff] [blame] | 11 | #include "webrtc/modules/video_capture/video_capture_impl.h" |
Edward Lemur | c20978e | 2017-07-06 19:44:34 +0200 | [diff] [blame] | 12 | #include "webrtc/rtc_base/refcount.h" |
wu@webrtc.org | f3f2f6a | 2011-10-19 18:42:17 +0000 | [diff] [blame] | 13 | |
| 14 | namespace webrtc { |
| 15 | |
| 16 | namespace videocapturemodule { |
| 17 | |
Peter Boström | 1d19441 | 2016-03-21 16:44:31 +0100 | [diff] [blame] | 18 | rtc::scoped_refptr<VideoCaptureModule> VideoCaptureImpl::Create( |
leozwang@webrtc.org | 3a39230 | 2012-03-12 21:03:38 +0000 | [diff] [blame] | 19 | const char* deviceUniqueIdUTF8) { |
nisse | b29b9c8 | 2016-12-12 00:22:56 -0800 | [diff] [blame] | 20 | return new rtc::RefCountedObject<VideoCaptureImpl>(); |
wu@webrtc.org | f3f2f6a | 2011-10-19 18:42:17 +0000 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | } // namespace videocapturemodule |
| 24 | |
| 25 | } // namespace webrtc |