blob: ac31825ef154d69a0a0caa2f2a960dc2de7be680 [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
30 virtual void OnIncomingCapturedFrame(const int32_t id, I420VideoFrame& frame)
31 OVERRIDE;
32 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_;
45 VideoCaptureModule* vcm;
46 VideoCaptureCapability capability_;
47
48 uint32_t last_timestamp;
49};
50} // test
51} // webrtc
52
53#endif // WEBRTC_VIDEO_ENGINE_TEST_COMMON_VCM_CAPTURER_H_