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

Unified Diff: webrtc/call/rtp_stream_receiver_controller.cc

Issue 2968693002: SSRC and RSID may only refer to one sink each in RtpDemuxer (Closed)
Patch Set: 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
Index: webrtc/call/rtp_stream_receiver_controller.cc
diff --git a/webrtc/call/rtp_stream_receiver_controller.cc b/webrtc/call/rtp_stream_receiver_controller.cc
index a4b1e36ae262c1951479c36b57e07ea71a76041d..743ae02254831c788967be363956b798ce34ae5b 100644
--- a/webrtc/call/rtp_stream_receiver_controller.cc
+++ b/webrtc/call/rtp_stream_receiver_controller.cc
@@ -46,7 +46,7 @@ bool RtpStreamReceiverController::OnRtpPacket(const RtpPacketReceived& packet) {
void RtpStreamReceiverController::AddSink(uint32_t ssrc,
RtpPacketSinkInterface* sink) {
rtc::CritScope cs(&lock_);
- return demuxer_.AddSink(ssrc, sink);
+ demuxer_.AddSink(ssrc, sink); // TODO(eladalon): Return-value useful here?
eladalon 2017/06/30 12:53:24 Reviewers - input welcome!
danilchap 2017/06/30 16:45:31 might be helpful. either return bool, or RTC_CHECK
eladalon 2017/07/03 08:23:35 Done.
}
size_t RtpStreamReceiverController::RemoveSink(
« webrtc/call/rtp_rtcp_demuxer_helper.h ('K') | « webrtc/call/rtp_rtcp_demuxer_helper.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698