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

Unified Diff: webrtc/video/video_receive_stream.cc

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/video_receive_stream.cc
diff --git a/webrtc/video/video_receive_stream.cc b/webrtc/video/video_receive_stream.cc
index acc497b616433e771a2259247f1360cbd1619095..c3fc434dd5679cafd59f8cabfe3f95d951f90a22 100644
--- a/webrtc/video/video_receive_stream.cc
+++ b/webrtc/video/video_receive_stream.cc
@@ -257,6 +257,15 @@ void VideoReceiveStream::SetSync(Syncable* audio_syncable) {
rtp_stream_sync_.ConfigureSync(audio_syncable);
}
+void VideoReceiveStream::AddSecondarySink(RtpPacketSinkInterface* sink) {
+ rtp_video_stream_receiver_.AddSecondarySink(sink);
+}
+
+void VideoReceiveStream::RemoveSecondarySink(
+ const RtpPacketSinkInterface* sink) {
+ rtp_video_stream_receiver_.RemoveSecondarySink(sink);
+}
+
void VideoReceiveStream::Start() {
RTC_DCHECK_RUN_ON(&worker_thread_checker_);
if (decode_thread_.IsRunning())

Powered by Google App Engine
This is Rietveld 408576698