From 0d2299c1ee04b9fb7c30e3ad555bf12e95157dfa Mon Sep 17 00:00:00 2001 From: Jerome Jiang Date: Mon, 25 Mar 2019 13:42:31 -0700 Subject: [PATCH] Change PSNR threshold for high bitdepth. BUG=webm:1609 Change-Id: I1aa18d58c20532f657059a2df3646fad1625e3ae --- test/vp9_end_to_end_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/vp9_end_to_end_test.cc b/test/vp9_end_to_end_test.cc index 6a0bf25..2d7bd70 100644 --- a/test/vp9_end_to_end_test.cc +++ b/test/vp9_end_to_end_test.cc @@ -30,8 +30,8 @@ const int kBitrate = 500; const double kPsnrThreshold[][5] = { { 36.0, 37.0, 37.0, 37.0, 37.0 }, { 35.0, 36.0, 36.0, 36.0, 36.0 }, { 34.0, 35.0, 35.0, 35.0, 35.0 }, { 33.0, 34.0, 34.0, 34.0, 34.0 }, - { 32.0, 33.0, 33.0, 33.0, 33.0 }, { 30.5, 32.0, 32.0, 32.0, 32.0 }, - { 30.0, 31.0, 31.0, 31.0, 31.0 }, { 29.0, 30.0, 30.0, 30.0, 30.0 }, + { 32.0, 33.0, 33.0, 33.0, 33.0 }, { 28.0, 32.0, 32.0, 32.0, 32.0 }, + { 28.5, 31.0, 31.0, 31.0, 31.0 }, { 28.0, 30.0, 30.0, 30.0, 30.0 }, }; typedef struct { -- 2.7.4