summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/moz-patch-stack/0034.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:35:37 +0000
commita90a5cba08fdf6c0ceb95101c275108a152a3aed (patch)
tree532507288f3defd7f4dcf1af49698bcb76034855 /third_party/libwebrtc/moz-patch-stack/0034.patch
parentAdding debian version 126.0.1-1. (diff)
downloadfirefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.tar.xz
firefox-a90a5cba08fdf6c0ceb95101c275108a152a3aed.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/moz-patch-stack/0034.patch')
-rw-r--r--third_party/libwebrtc/moz-patch-stack/0034.patch26
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;
+ }