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

Unified Diff: webrtc/call/flexfec_receive_stream_impl.cc

Issue 2968693002: SSRC and RSID may only refer to one sink each in RtpDemuxer (Closed)
Patch Set: Response to comments. Created 3 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
« no previous file with comments | « no previous file | webrtc/call/rtp_demuxer.h » ('j') | webrtc/call/rtp_demuxer.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/flexfec_receive_stream_impl.cc
diff --git a/webrtc/call/flexfec_receive_stream_impl.cc b/webrtc/call/flexfec_receive_stream_impl.cc
index c73d9e98e59f55985821ef5be2b794f52b73aa26..9147040454d8557fd3f4f18b6a388659e129dda0 100644
--- a/webrtc/call/flexfec_receive_stream_impl.cc
+++ b/webrtc/call/flexfec_receive_stream_impl.cc
@@ -157,8 +157,9 @@ FlexfecReceiveStreamImpl::FlexfecReceiveStreamImpl(
// problem too.
rtp_stream_receiver_ =
receiver_controller->CreateReceiver(config_.remote_ssrc, this);
- for (uint32_t ssrc : config.protected_media_ssrcs)
- receiver_controller->AddSink(ssrc, this);
+ for (uint32_t ssrc : config.protected_media_ssrcs) {
+ RTC_CHECK(receiver_controller->AddSink(ssrc, this));
holmer 2017/07/03 09:06:14 Is it possible to trigger this by writing a broken
eladalon 2017/07/03 11:25:34 As per our offline discussion, it would be better
+ }
}
FlexfecReceiveStreamImpl::~FlexfecReceiveStreamImpl() {
« no previous file with comments | « no previous file | webrtc/call/rtp_demuxer.h » ('j') | webrtc/call/rtp_demuxer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698