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 <mbonadei@webrtc.org>
Reviewed-by: Sergey Silkin <ssilkin@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#25709}
This commit is contained in:
Mirko Bonadei
2018-11-20 13:20:47 +01:00
committed by Commit Bot
parent 68170388f4
commit 22ff1a437a

View File

@ -149,7 +149,7 @@ TEST(VideoCodecTestLibvpx, ChangeFramerateVP9) {
// Framerate mismatch should be lower for lower framerate.
std::vector<RateControlThresholds> 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}};