summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/moz-patch-stack/0082.patch
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /third_party/libwebrtc/moz-patch-stack/0082.patch
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'third_party/libwebrtc/moz-patch-stack/0082.patch')
-rw-r--r--third_party/libwebrtc/moz-patch-stack/0082.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/third_party/libwebrtc/moz-patch-stack/0082.patch b/third_party/libwebrtc/moz-patch-stack/0082.patch
new file mode 100644
index 0000000000..d54ddf9d75
--- /dev/null
+++ b/third_party/libwebrtc/moz-patch-stack/0082.patch
@@ -0,0 +1,24 @@
+From: Michael Froman <mfroman@mozilla.com>
+Date: Wed, 5 Jul 2023 19:15:00 +0000
+Subject: Bug 1841864 - upstream commit 4baea5b07f should properly check size
+ of encoder_config_.simulcast_layers. r=jib
+
+Differential Revision: https://phabricator.services.mozilla.com/D182813
+Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/a7179d8d75313b6c9c76a496e10d102da019ff4f
+---
+ video/video_stream_encoder.cc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/video/video_stream_encoder.cc b/video/video_stream_encoder.cc
+index 2e5a120eed..c5f086e155 100644
+--- a/video/video_stream_encoder.cc
++++ b/video/video_stream_encoder.cc
+@@ -1392,7 +1392,7 @@ void VideoStreamEncoder::ReconfigureEncoder() {
+
+ bool is_svc = false;
+ bool single_stream_or_non_first_inactive = true;
+- for (size_t i = 1; i < encoder_config_.number_of_streams; ++i) {
++ for (size_t i = 1; i < encoder_config_.simulcast_layers.size(); ++i) {
+ if (encoder_config_.simulcast_layers[i].active) {
+ single_stream_or_non_first_inactive = false;
+ break;