From a553c726590ec01696fbc49de84b9374a6f84d75 Mon Sep 17 00:00:00 2001 From: philipel Date: Fri, 5 Apr 2019 16:03:00 +0200 Subject: [PATCH] Tune VideoCodecTestLibvpx.TemporalLayersVP8 thresholds. After https://webrtc-review.googlesource.com/c/src/+/131141 there are some minor changes to the encoding performance, hence the updated values. Bug: none Change-Id: I070a62ce725b0a79e5cb5c4679ab643de50c46c4 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/131334 Reviewed-by: Sergey Silkin Commit-Queue: Philip Eliasson Cr-Commit-Position: refs/heads/master@{#27466} --- 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 71243e29db..cb78f21ca8 100644 --- a/modules/video_coding/codecs/test/videocodec_test_libvpx.cc +++ b/modules/video_coding/codecs/test/videocodec_test_libvpx.cc @@ -323,7 +323,7 @@ TEST(VideoCodecTestLibvpx, MAYBE_TemporalLayersVP8) { #if defined(WEBRTC_ARCH_ARM) || defined(WEBRTC_ARCH_ARM64) std::vector rc_thresholds = { - {10, 1, 2, 1, 0.2, 0.1, 0, 1}, {12, 2, 3, 1, 0.2, 0.1, 0, 1}}; + {10, 1, 2.1, 1, 0.2, 0.1, 0, 1}, {12, 2, 3, 1, 0.2, 0.1, 0, 1}}; #else std::vector rc_thresholds = { {5, 1, 0, 1, 0.2, 0.1, 0, 1}, {10, 2, 0, 1, 0.2, 0.1, 0, 1}};