| Index: webrtc/video/video_send_stream_tests.cc
|
| diff --git a/webrtc/video/video_send_stream_tests.cc b/webrtc/video/video_send_stream_tests.cc
|
| index 87abfea08ca75e642083957949600d6c0af255b2..265d7495b177ce2f4f174225d6febe22eb8d5a37 100644
|
| --- a/webrtc/video/video_send_stream_tests.cc
|
| +++ b/webrtc/video/video_send_stream_tests.cc
|
| @@ -905,7 +905,7 @@ TEST_F(VideoSendStreamTest, SuspendBelowMinBitrate) {
|
| send_config->suspend_below_min_bitrate = true;
|
| int min_bitrate_bps = encoder_config->streams[0].min_bitrate_bps;
|
| set_low_remb_bps(min_bitrate_bps - 10000);
|
| - int threshold_window = std::max(min_bitrate_bps / 10, 10000);
|
| + int threshold_window = std::max(min_bitrate_bps / 10, 20000);
|
| ASSERT_GT(encoder_config->streams[0].max_bitrate_bps,
|
| min_bitrate_bps + threshold_window + 5000);
|
| set_high_remb_bps(min_bitrate_bps + threshold_window + 5000);
|
|
|