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

Unified Diff: webrtc/video_receive_stream.h

Issue 2974453002: Protected streams report RTP messages directly to the FlexFec streams (Closed)
Patch Set: . Created 3 years, 5 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_receive_stream.h
diff --git a/webrtc/video_receive_stream.h b/webrtc/video_receive_stream.h
index 863cb2e088267b8dfabfb1fd98b187501c1faf02..8a0703b220ba0620fa649e6246296b2c0a12a4ea 100644
--- a/webrtc/video_receive_stream.h
+++ b/webrtc/video_receive_stream.h
@@ -25,6 +25,7 @@
namespace webrtc {
+class RtpPacketSinkInterface;
class VideoDecoder;
class VideoReceiveStream {
@@ -221,6 +222,9 @@ class VideoReceiveStream {
EnableEncodedFrameRecording(rtc::kInvalidPlatformFileValue, 0);
}
+ virtual void AddSecondarySink(RtpPacketSinkInterface* sink) = 0;
+ virtual void RemoveSecondarySink(const RtpPacketSinkInterface* sink) = 0;
Taylor Brandstetter 2017/07/31 15:59:25 Again comments would be nice.
eladalon 2017/07/31 16:46:03 Done % question attached to the other comment abou
+
protected:
virtual ~VideoReceiveStream() {}
};
« webrtc/video/rtp_video_stream_receiver_unittest.cc ('K') | « webrtc/video/video_receive_stream.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698