diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:35:29 +0000 |
commit | 59203c63bb777a3bacec32fb8830fba33540e809 (patch) | |
tree | 58298e711c0ff0575818c30485b44a2f21bf28a0 /third_party/libwebrtc/moz-patch-stack/0034.patch | |
parent | Adding upstream version 126.0.1. (diff) | |
download | firefox-59203c63bb777a3bacec32fb8830fba33540e809.tar.xz firefox-59203c63bb777a3bacec32fb8830fba33540e809.zip |
Adding upstream version 127.0.upstream/127.0
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | third_party/libwebrtc/moz-patch-stack/0034.patch | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/third_party/libwebrtc/moz-patch-stack/0034.patch b/third_party/libwebrtc/moz-patch-stack/0034.patch index 3dfd2e8007..78234690b8 100644 --- a/third_party/libwebrtc/moz-patch-stack/0034.patch +++ b/third_party/libwebrtc/moz-patch-stack/0034.patch @@ -7,8 +7,8 @@ Differential Revision: https://phabricator.services.mozilla.com/D105774 Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/7330681cf4de6d8dd868cc661cbdd6679bbc07b3 --- call/video_receive_stream.h | 3 +++ - video/rtp_video_stream_receiver2.cc | 3 +-- - 2 files changed, 4 insertions(+), 2 deletions(-) + 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 95f1a47f4e..a1fc204e7c 100644 @@ -25,17 +25,15 @@ index 95f1a47f4e..a1fc204e7c 100644 // See LntfConfig for description. diff --git a/video/rtp_video_stream_receiver2.cc b/video/rtp_video_stream_receiver2.cc -index badb942cd4..1f4cc5b6be 100644 +index 624f699b73..3ed4e5bb18 100644 --- a/video/rtp_video_stream_receiver2.cc +++ b/video/rtp_video_stream_receiver2.cc -@@ -296,9 +296,8 @@ RtpVideoStreamReceiver2::RtpVideoStreamReceiver2( - frames_decryptable_(false), - absolute_capture_time_interpolator_(clock) { - packet_sequence_checker_.Detach(); -- constexpr bool remb_candidate = true; - if (packet_router_) -- packet_router_->AddReceiveRtpModule(rtp_rtcp_.get(), remb_candidate); -+ packet_router_->AddReceiveRtpModule(rtp_rtcp_.get(), config_.rtp.remb); - - RTC_DCHECK(config_.rtp.rtcp_mode != RtcpMode::kOff) - << "A stream should not be configured with RTCP disabled. This value is " +@@ -1258,7 +1258,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; + } |