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

Unified Diff: webrtc/video/video_receive_stream.h

Issue 2078873002: Reland of Split IncomingVideoStream into two implementations, with smoothing and without. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix renderer pointer Created 4 years, 6 months 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/video/video_receive_stream.h
diff --git a/webrtc/video/video_receive_stream.h b/webrtc/video/video_receive_stream.h
index 3f6d55a0da8b2d9dcc6bfc955b9ab6b7ca1bac19..d37aece98cc910ff6b1ee54a371fabe7855d5eed 100644
--- a/webrtc/video/video_receive_stream.h
+++ b/webrtc/video/video_receive_stream.h
@@ -96,10 +96,10 @@ class VideoReceiveStream : public webrtc::VideoReceiveStream,
CallStats* const call_stats_;
vcm::VideoReceiver video_receiver_;
- IncomingVideoStream incoming_video_stream_;
+ std::unique_ptr<rtc::VideoSinkInterface<VideoFrame>> incoming_video_stream_;
nisse-webrtc 2016/06/20 13:47:55 I think ownership here is a bit unfortunate. The g
tommi 2016/06/20 14:24:51 Yes (or something along those lines)
nisse-webrtc 2016/06/20 14:51:39 Acknowledged. When we introduced this interface s
ReceiveStatisticsProxy stats_proxy_;
RtpStreamReceiver rtp_stream_receiver_;
- VideoStreamDecoder video_stream_decoder_;
+ std::unique_ptr<VideoStreamDecoder> video_stream_decoder_;
ViESyncModule vie_sync_;
std::unique_ptr<IvfFileWriter> ivf_writer_;

Powered by Google App Engine
This is Rietveld 408576698