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}
This commit is contained in:
Andrey Logvin
2020-12-15 19:06:20 +00:00
committed by Commit Bot
parent 4793e9e3ce
commit f964dea554

View File

@ -50,7 +50,7 @@ TEST(VideoCodecTestLibaom, HighBitrateAV1) {
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);
}