blob: cd3faf7abbd18ec1ff67307dbb8921e2db8a05c0 [file] [log] [blame]
tommi@webrtc.org81878772012-11-20 13:35:33 +00001/*
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.orga9b74ad2013-07-12 10:03:52 +000011#include "webrtc/modules/video_capture/windows/video_capture_mf.h"
tommi@webrtc.org81878772012-11-20 13:35:33 +000012
13namespace webrtc {
14namespace videocapturemodule {
15
nisseb29b9c82016-12-12 00:22:56 -080016VideoCaptureMF::VideoCaptureMF() {}
tommi@webrtc.org81878772012-11-20 13:35:33 +000017VideoCaptureMF::~VideoCaptureMF() {}
18
nisseb29b9c82016-12-12 00:22:56 -080019int32_t VideoCaptureMF::Init(const char* device_id) {
tommi@webrtc.org81878772012-11-20 13:35:33 +000020 return 0;
21}
22
pbos@webrtc.orgdfc5bb92013-04-10 08:23:13 +000023int32_t VideoCaptureMF::StartCapture(
tommi@webrtc.org81878772012-11-20 13:35:33 +000024 const VideoCaptureCapability& capability) {
25 return -1;
26}
27
pbos@webrtc.orgdfc5bb92013-04-10 08:23:13 +000028int32_t VideoCaptureMF::StopCapture() {
tommi@webrtc.org81878772012-11-20 13:35:33 +000029 return -1;
30}
31
32bool VideoCaptureMF::CaptureStarted() {
33 return false;
34}
35
pbos@webrtc.orgdfc5bb92013-04-10 08:23:13 +000036int32_t VideoCaptureMF::CaptureSettings(
tommi@webrtc.org81878772012-11-20 13:35:33 +000037 VideoCaptureCapability& settings) {
38 return -1;
39}
40
41} // namespace videocapturemodule
42} // namespace webrtc