| /* |
| * Copyright (c) 2013 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 "webrtc/video_engine/test/common/vcm_capturer.h" |
| #include "webrtc/video_engine/test/common/video_capturer.h" |
| |
| namespace webrtc { |
| namespace test { |
| |
| class NullCapturer : public VideoCapturer { |
| public: |
| NullCapturer() : VideoCapturer(NULL) {} |
| virtual ~NullCapturer() {} |
| |
| virtual void Start() {} |
| virtual void Stop() {} |
| }; |
| |
| VideoCapturer::VideoCapturer(newapi::VideoSendStreamInput* input) |
| : input_(input) {} |
| |
| VideoCapturer* VideoCapturer::Create(newapi::VideoSendStreamInput* input) { |
| // TODO(pbos): These should be specified by command-line parameters. |
| size_t width = 640; |
| size_t height = 480; |
| size_t target_fps = 30; |
| |
| VcmCapturer* vcm_capturer = VcmCapturer::Create(input, width, height, |
| target_fps); |
| if (vcm_capturer != NULL) { |
| return vcm_capturer; |
| } |
| // TODO(pbos): Log a warning that this failed. |
| |
| // TODO(pbos): Add a pseudocapturer which generates frames. |
| |
| return new NullCapturer(); |
| } |
| } // test |
| } // webrtc |