From 5a04ef6ca47c50ab8fc85a4efe2253e2dabe03c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Spr=C3=A5ng?= Date: Mon, 26 Oct 2020 16:52:51 +0100 Subject: [PATCH] Tweaks videocodec_test threshold for arm vp8 simulcast MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:10155 Change-Id: If4fc89c1aec34ac5775154315cc50779bbee4ee5 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/190285 Reviewed-by: Ying Wang Commit-Queue: Erik Språng Cr-Commit-Position: refs/heads/master@{#32495} --- modules/video_coding/codecs/test/videocodec_test_libvpx.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/video_coding/codecs/test/videocodec_test_libvpx.cc b/modules/video_coding/codecs/test/videocodec_test_libvpx.cc index d94d803504..8076e40fd4 100644 --- a/modules/video_coding/codecs/test/videocodec_test_libvpx.cc +++ b/modules/video_coding/codecs/test/videocodec_test_libvpx.cc @@ -358,7 +358,7 @@ TEST(VideoCodecTestLibvpx, MAYBE_MultiresVP8) { std::vector rate_profiles = {{1500, 30, 0}}; #if defined(WEBRTC_ARCH_ARM) || defined(WEBRTC_ARCH_ARM64) std::vector rc_thresholds = { - {4.1, 1.04, 6, 0.18, 0.14, 0.08, 0, 1}}; + {4.1, 1.04, 7, 0.18, 0.14, 0.08, 0, 1}}; #else std::vector rc_thresholds = { {5, 1, 5, 1, 0.3, 0.1, 0, 1}};