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

Unified Diff: webrtc/video/video_receive_stream.cc

Issue 2974453002: Protected streams report RTP messages directly to the FlexFec streams (Closed)
Patch Set: Rebase and rephrase comment. 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 a18d4375a19cee1a1020fd2ce4f75b0f9a459789..d3777d9b805e8395add5cea378c3155e8ff82b38 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