2013-05-16 12:08:03 +00:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
#ifndef WEBRTC_VIDEO_ENGINE_TEST_COMMON_VCM_CAPTURER_H_
|
|
|
|
|
#define WEBRTC_VIDEO_ENGINE_TEST_COMMON_VCM_CAPTURER_H_
|
|
|
|
|
|
|
|
|
|
#include "webrtc/common_types.h"
|
|
|
|
|
#include "webrtc/common_video/libyuv/include/webrtc_libyuv.h"
|
|
|
|
|
#include "webrtc/modules/video_capture/include/video_capture.h"
|
2013-10-28 16:32:01 +00:00
|
|
|
#include "webrtc/test/video_capturer.h"
|
2013-05-16 12:08:03 +00:00
|
|
|
|
|
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
|
|
|
|
class VcmCapturer : public VideoCapturer, public VideoCaptureDataCallback {
|
|
|
|
|
public:
|
2013-08-23 09:19:30 +00:00
|
|
|
static VcmCapturer* Create(VideoSendStreamInput* input, size_t width,
|
2013-05-16 12:08:03 +00:00
|
|
|
size_t height, size_t target_fps);
|
|
|
|
|
virtual ~VcmCapturer();
|
|
|
|
|
|
2015-03-04 12:58:35 +00:00
|
|
|
void Start() override;
|
|
|
|
|
void Stop() override;
|
2013-05-16 12:08:03 +00:00
|
|
|
|
2015-03-04 12:58:35 +00:00
|
|
|
void OnIncomingCapturedFrame(const int32_t id,
|
2015-05-29 17:21:40 -07:00
|
|
|
const VideoFrame& frame) override; // NOLINT
|
2015-03-04 12:58:35 +00:00
|
|
|
void OnCaptureDelayChanged(const int32_t id, const int32_t delay) override;
|
2013-05-16 12:08:03 +00:00
|
|
|
|
|
|
|
|
private:
|
2013-08-23 09:19:30 +00:00
|
|
|
explicit VcmCapturer(VideoSendStreamInput* input);
|
2013-05-16 12:08:03 +00:00
|
|
|
bool Init(size_t width, size_t height, size_t target_fps);
|
|
|
|
|
void Destroy();
|
|
|
|
|
|
|
|
|
|
bool started_;
|
2013-05-21 09:32:22 +00:00
|
|
|
VideoCaptureModule* vcm_;
|
2013-05-16 12:08:03 +00:00
|
|
|
VideoCaptureCapability capability_;
|
|
|
|
|
};
|
|
|
|
|
} // test
|
|
|
|
|
} // webrtc
|
|
|
|
|
|
|
|
|
|
#endif // WEBRTC_VIDEO_ENGINE_TEST_COMMON_VCM_CAPTURER_H_
|