Explicitly inform PacketRouter which RTP-RTCP modules are REMB-candidates
BUG=webrtc:7860
Review-Url: https://codereview.webrtc.org/2973363002
Cr-Original-Commit-Position: refs/heads/master@{#19201}
Cr-Mirrored-From: https://chromium.googlesource.com/external/webrtc
Cr-Mirrored-Commit: 822ff2b794eb676541ef3cc6d5c7bc7380a590cc
diff --git a/video/rtp_video_stream_receiver.cc b/video/rtp_video_stream_receiver.cc
index 4204670..ae19d90 100644
--- a/video/rtp_video_stream_receiver.cc
+++ b/video/rtp_video_stream_receiver.cc
@@ -113,7 +113,8 @@
keyframe_request_sender_(keyframe_request_sender),
timing_(timing),
has_received_frame_(false) {
- packet_router_->AddReceiveRtpModule(rtp_rtcp_.get());
+ constexpr bool remb_candidate = true;
+ packet_router_->AddReceiveRtpModule(rtp_rtcp_.get(), remb_candidate);
rtp_receive_statistics_->RegisterRtpStatisticsCallback(receive_stats_proxy);
rtp_receive_statistics_->RegisterRtcpStatisticsCallback(receive_stats_proxy);