Lower HighBitrateAV1 liabom test quality threshold Lowering a bit since it is currently failing after one of CLs from https://aomedia.googlesource.com/aom.git/+log/87c414ed32..43927e4611 The error is "error: Expected: (video_stat.min_ssim) > (quality_thresholds->min_min_ssim), actual: 0.919629 vs 0.92" Bug: None Change-Id: I35e1e989961c6794a7f5f2015f5a8a786f1e25f8 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/197808 Reviewed-by: Jerome Jiang <jianj@google.com> Reviewed-by: Stefan Holmer <stefan@webrtc.org> Commit-Queue: Andrey Logvin <landrey@webrtc.org> Cr-Commit-Position: refs/heads/master@{#32844}
diff --git a/modules/video_coding/codecs/test/videocodec_test_libaom.cc b/modules/video_coding/codecs/test/videocodec_test_libaom.cc index 45730aa..18852e0 100644 --- a/modules/video_coding/codecs/test/videocodec_test_libaom.cc +++ b/modules/video_coding/codecs/test/videocodec_test_libaom.cc
@@ -50,7 +50,7 @@ std::vector<RateControlThresholds> rc_thresholds = { {12, 1, 0, 1, 0.3, 0.1, 0, 1}}; - std::vector<QualityThresholds> quality_thresholds = {{37, 34, 0.94, 0.92}}; + std::vector<QualityThresholds> quality_thresholds = {{37, 34, 0.94, 0.915}}; fixture->RunTest(rate_profiles, &rc_thresholds, &quality_thresholds, nullptr); }