From 22ff1a437a52c8ab82ed3bcc31a972759fc745a7 Mon Sep 17 00:00:00 2001 From: Mirko Bonadei Date: Tue, 20 Nov 2018 13:20:47 +0100 Subject: [PATCH] Fix threshold in VideoCodecTestLibvpx.ChangeFramerateVP9. Libvpx has been recently updated and this test was failing because of a slightly different value. TBR=sprang@webrtc.org Bug: webrtc:10017 Change-Id: I5fe9161eef5c3e1ff8e0dceb36a663648d8f4617 Reviewed-on: https://webrtc-review.googlesource.com/c/111461 Commit-Queue: Mirko Bonadei Reviewed-by: Sergey Silkin Cr-Commit-Position: refs/heads/master@{#25709} --- 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 7208d39ea2..e0bcaa17fb 100644 --- a/modules/video_coding/codecs/test/videocodec_test_libvpx.cc +++ b/modules/video_coding/codecs/test/videocodec_test_libvpx.cc @@ -149,7 +149,7 @@ TEST(VideoCodecTestLibvpx, ChangeFramerateVP9) { // Framerate mismatch should be lower for lower framerate. std::vector rc_thresholds = { - {10, 2, 40, 0.4, 0.5, 0.2, 0, 1}, + {10, 2, 40, 0.5, 0.5, 0.2, 0, 1}, {8, 2, 5, 0.2, 0.5, 0.2, 0, 0}, {5, 2, 0, 0.21, 0.5, 0.3, 0, 0}};