blob: df84e16c0ad3c96043bf15ebfdc54e0bc9ba242c [file] [log] [blame]
pbos@webrtc.orgc1506a22013-05-29 13:41: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_FRAME_GENERATOR_CAPTURER_H_
11#define WEBRTC_VIDEO_ENGINE_TEST_COMMON_FRAME_GENERATOR_CAPTURER_H_
12
pbos@webrtc.org2f02da82013-07-09 08:02:33 +000013#include "webrtc/system_wrappers/interface/scoped_ptr.h"
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000014#include "webrtc/typedefs.h"
pbos@webrtc.org2f02da82013-07-09 08:02:33 +000015#include "webrtc/video_engine/test/common/video_capturer.h"
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000016
17namespace webrtc {
18
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000019class CriticalSectionWrapper;
pbos@webrtc.org2f02da82013-07-09 08:02:33 +000020class EventWrapper;
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000021class ThreadWrapper;
22
23namespace test {
24
25class FrameGenerator;
26
27class FrameGeneratorCapturer : public VideoCapturer {
28 public:
pbos@webrtc.org7deb3352013-08-21 12:07:37 +000029 // The FrameGeneratorCapturer takes ownership of the FrameGenerator, which
30 // will be freed when the FrameGeneratorCapturer is deleted.
pbos@webrtc.orgc1797062013-08-23 09:19:30 +000031 static FrameGeneratorCapturer* Create(VideoSendStreamInput* input,
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000032 FrameGenerator* frame_generator,
pbos@webrtc.org2f02da82013-07-09 08:02:33 +000033 int target_fps);
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000034 virtual ~FrameGeneratorCapturer();
35
36 virtual void Start() OVERRIDE;
37 virtual void Stop() OVERRIDE;
38
39 private:
pbos@webrtc.orgc1797062013-08-23 09:19:30 +000040 FrameGeneratorCapturer(VideoSendStreamInput* input,
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000041 FrameGenerator* frame_generator,
pbos@webrtc.org2f02da82013-07-09 08:02:33 +000042 int target_fps);
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000043 bool Init();
44 void InsertFrame();
45 static bool Run(void* obj);
46
47 bool sending_;
48
pbos@webrtc.org2f02da82013-07-09 08:02:33 +000049 scoped_ptr<EventWrapper> tick_;
50 scoped_ptr<CriticalSectionWrapper> lock_;
51 scoped_ptr<ThreadWrapper> thread_;
pbos@webrtc.org7deb3352013-08-21 12:07:37 +000052 scoped_ptr<FrameGenerator> frame_generator_;
pbos@webrtc.orgc1506a22013-05-29 13:41:03 +000053
54 int target_fps_;
55};
56} // test
57} // webrtc
58
59#endif // WEBRTC_VIDEO_ENGINE_TEST_COMMON_FRAME_GENERATOR_CAPTURER_H_