tommi@webrtc.org | 8187877 | 2012-11-20 13:35:33 +0000 | [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 | a9b74ad | 2013-07-12 10:03:52 +0000 | [diff] [blame] | 11 | #include "webrtc/modules/video_capture/windows/video_capture_mf.h" |
tommi@webrtc.org | 8187877 | 2012-11-20 13:35:33 +0000 | [diff] [blame] | 12 | |
| 13 | namespace webrtc { |
| 14 | namespace videocapturemodule { |
| 15 | |
nisse | b29b9c8 | 2016-12-12 00:22:56 -0800 | [diff] [blame] | 16 | VideoCaptureMF::VideoCaptureMF() {} |
tommi@webrtc.org | 8187877 | 2012-11-20 13:35:33 +0000 | [diff] [blame] | 17 | VideoCaptureMF::~VideoCaptureMF() {} |
| 18 | |
nisse | b29b9c8 | 2016-12-12 00:22:56 -0800 | [diff] [blame] | 19 | int32_t VideoCaptureMF::Init(const char* device_id) { |
tommi@webrtc.org | 8187877 | 2012-11-20 13:35:33 +0000 | [diff] [blame] | 20 | return 0; |
| 21 | } |
| 22 | |
pbos@webrtc.org | dfc5bb9 | 2013-04-10 08:23:13 +0000 | [diff] [blame] | 23 | int32_t VideoCaptureMF::StartCapture( |
tommi@webrtc.org | 8187877 | 2012-11-20 13:35:33 +0000 | [diff] [blame] | 24 | const VideoCaptureCapability& capability) { |
| 25 | return -1; |
| 26 | } |
| 27 | |
pbos@webrtc.org | dfc5bb9 | 2013-04-10 08:23:13 +0000 | [diff] [blame] | 28 | int32_t VideoCaptureMF::StopCapture() { |
tommi@webrtc.org | 8187877 | 2012-11-20 13:35:33 +0000 | [diff] [blame] | 29 | return -1; |
| 30 | } |
| 31 | |
| 32 | bool VideoCaptureMF::CaptureStarted() { |
| 33 | return false; |
| 34 | } |
| 35 | |
pbos@webrtc.org | dfc5bb9 | 2013-04-10 08:23:13 +0000 | [diff] [blame] | 36 | int32_t VideoCaptureMF::CaptureSettings( |
tommi@webrtc.org | 8187877 | 2012-11-20 13:35:33 +0000 | [diff] [blame] | 37 | VideoCaptureCapability& settings) { |
| 38 | return -1; |
| 39 | } |
| 40 | |
| 41 | } // namespace videocapturemodule |
| 42 | } // namespace webrtc |