Index: webrtc/video/video_send_stream.cc |
diff --git a/webrtc/video/video_send_stream.cc b/webrtc/video/video_send_stream.cc |
index 5509553e25f2854a77866212899b2e3d3b4bafb0..2c3a5c495c4398927b7ef7c99a327a2251f5b3f9 100644 |
--- a/webrtc/video/video_send_stream.cc |
+++ b/webrtc/video/video_send_stream.cc |
@@ -846,8 +846,10 @@ VideoSendStreamImpl::VideoSendStreamImpl( |
// We add the highest spatial layer first to ensure it'll be prioritized |
// when sending padding, with the hope that the packet rate will be smaller, |
// and that it's more important to protect than the lower layers. |
- for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) |
- transport->packet_router()->AddSendRtpModule(rtp_rtcp); |
+ for (RtpRtcp* rtp_rtcp : rtp_rtcp_modules_) { |
+ constexpr bool remb_candidate = true; |
+ transport->packet_router()->AddSendRtpModule(rtp_rtcp, remb_candidate); |
+ } |
for (size_t i = 0; i < config_->rtp.extensions.size(); ++i) { |
const std::string& extension = config_->rtp.extensions[i].uri; |