This also deletes unused features of the video_capturer interface, the classes VideoCaptureFeedBack, VideoCaptureEncodeInterface and related methods, and the module id which used to be passed as an argument to the VideoCaptureDataCallback. In theory the module id could have been used to let a single VideoCaptureDataCallback serve several capturers, and demultiplex on the id, but in practice, it was unused. With this change, it is required to use a separate VideoSinkInterface for each capturer. BUG=webrtc:6789 Review-Url: https://codereview.webrtc.org/2534553002 Cr-Commit-Position: refs/heads/master@{#15540}
90 lines
2.7 KiB
C++
90 lines
2.7 KiB
C++
/*
|
|
* Copyright (c) 2004 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_MEDIA_ENGINE_FAKEWEBRTCVIDEOCAPTUREMODULE_H_
|
|
#define WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVIDEOCAPTUREMODULE_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "webrtc/media/base/testutils.h"
|
|
#include "webrtc/media/engine/webrtcvideocapturer.h"
|
|
|
|
class FakeWebRtcVcmFactory;
|
|
|
|
// Fake class for mocking out webrtc::VideoCaptureModule.
|
|
class FakeWebRtcVideoCaptureModule : public webrtc::VideoCaptureModule {
|
|
public:
|
|
FakeWebRtcVideoCaptureModule(FakeWebRtcVcmFactory* factory)
|
|
: factory_(factory),
|
|
callback_(NULL),
|
|
running_(false) {
|
|
}
|
|
~FakeWebRtcVideoCaptureModule();
|
|
void RegisterCaptureDataCallback(
|
|
rtc::VideoSinkInterface<webrtc::VideoFrame>* callback) override {
|
|
callback_ = callback;
|
|
}
|
|
void DeRegisterCaptureDataCallback() override { callback_ = NULL; }
|
|
int32_t StartCapture(const webrtc::VideoCaptureCapability& cap) override {
|
|
if (running_) return -1;
|
|
cap_ = cap;
|
|
running_ = true;
|
|
return 0;
|
|
}
|
|
int32_t StopCapture() override {
|
|
running_ = false;
|
|
return 0;
|
|
}
|
|
const char* CurrentDeviceName() const override {
|
|
return NULL; // not implemented
|
|
}
|
|
bool CaptureStarted() override { return running_; }
|
|
int32_t CaptureSettings(webrtc::VideoCaptureCapability& settings) override {
|
|
if (!running_) return -1;
|
|
settings = cap_;
|
|
return 0;
|
|
}
|
|
|
|
int32_t SetCaptureRotation(webrtc::VideoRotation rotation) override {
|
|
return -1; // not implemented
|
|
}
|
|
bool SetApplyRotation(bool enable) override {
|
|
return true; // ignored
|
|
}
|
|
bool GetApplyRotation() override {
|
|
return true; // Rotation compensation is turned on.
|
|
}
|
|
void SendFrame(int w, int h) {
|
|
if (!running_) return;
|
|
|
|
rtc::scoped_refptr<webrtc::I420Buffer> buffer =
|
|
new rtc::RefCountedObject<webrtc::I420Buffer>(w, h);
|
|
// Initialize memory to satisfy DrMemory tests. See
|
|
// https://bugs.chromium.org/p/libyuv/issues/detail?id=377
|
|
buffer->InitializeData();
|
|
if (callback_) {
|
|
callback_->OnFrame(
|
|
webrtc::VideoFrame(buffer, 0, 0, webrtc::kVideoRotation_0));
|
|
}
|
|
}
|
|
|
|
const webrtc::VideoCaptureCapability& cap() const {
|
|
return cap_;
|
|
}
|
|
|
|
private:
|
|
FakeWebRtcVcmFactory* factory_;
|
|
rtc::VideoSinkInterface<webrtc::VideoFrame>* callback_;
|
|
bool running_;
|
|
webrtc::VideoCaptureCapability cap_;
|
|
};
|
|
|
|
#endif // WEBRTC_MEDIA_ENGINE_FAKEWEBRTCVIDEOCAPTUREMODULE_H_
|