Source code

Revision control

Copy as Markdown

Other Tools

From: Andreas Pehrson <apehrson@mozilla.com>
Date: Fri, 19 Feb 2021 13:45:00 +0100
Subject: Bug 1654112 - libwebrtc: Add a REMB on/off switch to
VideoReceiveStream. r=ng
---
call/video_receive_stream.h | 3 +++
video/rtp_video_stream_receiver2.cc | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/call/video_receive_stream.h b/call/video_receive_stream.h
index f69b03a166..f68368567c 100644
--- a/call/video_receive_stream.h
+++ b/call/video_receive_stream.h
@@ -236,6 +236,9 @@ class VideoReceiveStreamInterface : public MediaReceiveStreamInterface {
// disabled.
KeyFrameReqMethod keyframe_method = KeyFrameReqMethod::kPliRtcp;
+ // See draft-alvestrand-rmcat-remb for information.
+ bool remb = false;
+
bool tmmbr = false;
// See LntfConfig for description.
diff --git a/video/rtp_video_stream_receiver2.cc b/video/rtp_video_stream_receiver2.cc
index d6c859f535..23c3d3f6eb 100644
--- a/video/rtp_video_stream_receiver2.cc
+++ b/video/rtp_video_stream_receiver2.cc
@@ -1244,7 +1244,7 @@ void RtpVideoStreamReceiver2::StartReceive() {
// Change REMB candidate egibility.
packet_router_->RemoveReceiveRtpModule(rtp_rtcp_.get());
packet_router_->AddReceiveRtpModule(rtp_rtcp_.get(),
- /*remb_candidate=*/true);
+ /*remb_candidate=*/config_.rtp.remb);
}
receiving_ = true;
}