blob: e1f4a54f232e9fa3f714b72fc0aabceb4cf987cf [file] [log] [blame]
wu@webrtc.orgf3f2f6a2011-10-19 18:42:17 +00001/*
leozwang@webrtc.org3a392302012-03-12 21:03:38 +00002 * Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
wu@webrtc.orgf3f2f6a2011-10-19 18:42:17 +00003 *
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.org8e3bbed2013-07-25 16:55:58 +000011#include "webrtc/modules/video_capture/video_capture_impl.h"
Edward Lemurc20978e2017-07-06 19:44:34 +020012#include "webrtc/rtc_base/refcount.h"
wu@webrtc.orgf3f2f6a2011-10-19 18:42:17 +000013
14namespace webrtc {
15
16namespace videocapturemodule {
17
Peter Boström1d194412016-03-21 16:44:31 +010018rtc::scoped_refptr<VideoCaptureModule> VideoCaptureImpl::Create(
leozwang@webrtc.org3a392302012-03-12 21:03:38 +000019 const char* deviceUniqueIdUTF8) {
nisseb29b9c82016-12-12 00:22:56 -080020 return new rtc::RefCountedObject<VideoCaptureImpl>();
wu@webrtc.orgf3f2f6a2011-10-19 18:42:17 +000021}
22
23} // namespace videocapturemodule
24
25} // namespace webrtc