mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-12 21:30:45 +01:00

Bug: webrtc:12701 Change-Id: If49095b101c1a1763c2a44a0284c0d670cce953f Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/265390 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Niels Moller <nisse@webrtc.org> Reviewed-by: Tomas Gunnarsson <tommi@webrtc.org> Cr-Commit-Position: refs/heads/main@{#37219}
38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
#include "api/scoped_refptr.h"
|
|
#include "modules/video_capture/windows/video_capture_ds.h"
|
|
|
|
namespace webrtc {
|
|
namespace videocapturemodule {
|
|
|
|
// static
|
|
VideoCaptureModule::DeviceInfo* VideoCaptureImpl::CreateDeviceInfo() {
|
|
// TODO(tommi): Use the Media Foundation version on Vista and up.
|
|
return DeviceInfoDS::Create();
|
|
}
|
|
|
|
rtc::scoped_refptr<VideoCaptureModule> VideoCaptureImpl::Create(
|
|
const char* device_id) {
|
|
if (device_id == nullptr)
|
|
return nullptr;
|
|
|
|
// TODO(tommi): Use Media Foundation implementation for Vista and up.
|
|
auto capture = rtc::make_ref_counted<VideoCaptureDS>();
|
|
if (capture->Init(device_id) != 0) {
|
|
return nullptr;
|
|
}
|
|
|
|
return capture;
|
|
}
|
|
|
|
} // namespace videocapturemodule
|
|
} // namespace webrtc
|