blob: 83cf19d6994a4e53862434e1fd71213e6a7599bb [file] [log] [blame]
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +00001/*
2 * Copyright (c) 2013 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#ifndef WEBRTC_VIDEO_ENGINE_TEST_COMMON_VCM_CAPTURER_H_
11#define WEBRTC_VIDEO_ENGINE_TEST_COMMON_VCM_CAPTURER_H_
12
13#include "webrtc/common_types.h"
14#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
15#include "webrtc/modules/video_capture/include/video_capture.h"
16#include "webrtc/video_engine/test/common/video_capturer.h"
17
18namespace webrtc {
19namespace test {
20
21class VcmCapturer : public VideoCapturer, public VideoCaptureDataCallback {
22 public:
23 static VcmCapturer* Create(newapi::VideoSendStreamInput* input, size_t width,
24 size_t height, size_t target_fps);
25 virtual ~VcmCapturer();
26
27 virtual void Start() OVERRIDE;
28 virtual void Stop() OVERRIDE;
29
mflodman@webrtc.org9bacbf42013-05-27 15:52:38 +000030 virtual void OnIncomingCapturedFrame(
31 const int32_t id, I420VideoFrame& frame) OVERRIDE; // NOLINT
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +000032 virtual void OnIncomingCapturedEncodedFrame(const int32_t id,
33 VideoFrame& frame,
34 VideoCodecType codec_type)
35 OVERRIDE;
36 virtual void OnCaptureDelayChanged(const int32_t id, const int32_t delay)
37 OVERRIDE;
38
39 private:
40 explicit VcmCapturer(newapi::VideoSendStreamInput* input);
41 bool Init(size_t width, size_t height, size_t target_fps);
42 void Destroy();
43
44 bool started_;
pbos@webrtc.org9a15fc32013-05-21 09:32:22 +000045 VideoCaptureModule* vcm_;
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +000046 VideoCaptureCapability capability_;
47
pbos@webrtc.org9a15fc32013-05-21 09:32:22 +000048 uint32_t last_timestamp_;
pbos@webrtc.orgdc8c8832013-05-16 12:08:03 +000049};
50} // test
51} // webrtc
52
53#endif // WEBRTC_VIDEO_ENGINE_TEST_COMMON_VCM_CAPTURER_H_