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() {} |
}; |