Bug 1880804 [wpt PR 44645] - Implement constructor in RTCEncodedVideoFrame, a=testonly
[gecko.git] / third_party / libwebrtc / moz-patch-stack / 0081.patch
blob8a60e356af801dce6244f24e3215bdabf4f39e1f
1 From: Michael Froman <mfroman@mozilla.com>
2 Date: Wed, 5 Jul 2023 19:15:00 +0000
3 Subject: Bug 1841864 - upstream commit 4baea5b07f should properly check size
4 of encoder_config_.simulcast_layers. r=jib
6 Differential Revision: https://phabricator.services.mozilla.com/D182813
7 Mercurial Revision: https://hg.mozilla.org/mozilla-central/rev/a7179d8d75313b6c9c76a496e10d102da019ff4f
8 ---
9 video/video_stream_encoder.cc | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
12 diff --git a/video/video_stream_encoder.cc b/video/video_stream_encoder.cc
13 index 552463e143..669f165635 100644
14 --- a/video/video_stream_encoder.cc
15 +++ b/video/video_stream_encoder.cc
16 @@ -1375,7 +1375,7 @@ void VideoStreamEncoder::ReconfigureEncoder() {
18 bool is_svc = false;
19 bool single_stream_or_non_first_inactive = true;
20 - for (size_t i = 1; i < encoder_config_.number_of_streams; ++i) {
21 + for (size_t i = 1; i < encoder_config_.simulcast_layers.size(); ++i) {
22 if (encoder_config_.simulcast_layers[i].active) {
23 single_stream_or_non_first_inactive = false;
24 break;