Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1761)

Unified Diff: webrtc/test/vcm_capturer.h

Issue 2534553002: Replace VideoCaptureDataCallback by VideoSinkInterface. (Closed)
Patch Set: Add webrtc/media/base to video_capturer include_rules. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: webrtc/test/vcm_capturer.h
diff --git a/webrtc/test/vcm_capturer.h b/webrtc/test/vcm_capturer.h
index a6c4b5ca37f31be6714436d1da5d577e4dc1a6df..c4dae6556d6c6642d29ab0123932fbb9378f2268 100644
--- a/webrtc/test/vcm_capturer.h
+++ b/webrtc/test/vcm_capturer.h
@@ -20,7 +20,9 @@
namespace webrtc {
namespace test {
-class VcmCapturer : public VideoCapturer, public VideoCaptureDataCallback {
+class VcmCapturer
+ : public VideoCapturer,
+ public rtc::VideoSinkInterface<VideoFrame> {
public:
static VcmCapturer* Create(size_t width, size_t height, size_t target_fps);
virtual ~VcmCapturer();
@@ -31,9 +33,7 @@ class VcmCapturer : public VideoCapturer, public VideoCaptureDataCallback {
const rtc::VideoSinkWants& wants) override;
void RemoveSink(rtc::VideoSinkInterface<VideoFrame>* sink) override;
- void OnIncomingCapturedFrame(const int32_t id,
- const VideoFrame& frame) override; // NOLINT
- void OnCaptureDelayChanged(const int32_t id, const int32_t delay) override;
+ void OnFrame(const VideoFrame& frame) override;
private:
VcmCapturer();

Powered by Google App Engine
This is Rietveld 408576698