Update bit exactness tests to match changes

Follow up for https://webrtc-review.googlesource.com/c/src/+/227773 , updating M1 checksums that were not updated in the previous CL.

Example M1 failed run: https://ci.chromium.org/ui/p/webrtc/builders/ci/MacARM64%20M1%20Release/401/overview

Bug: webrtc:13053
Change-Id: I111d1d3c4bf5828ee499f20799b527ca916d77e7
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/228247
Reviewed-by: Henrik Lundin <henrik.lundin@webrtc.org>
Commit-Queue: Andrey Logvin <landrey@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#34697}
This commit is contained in:
landrey
2021-08-10 09:47:01 +00:00
committed by WebRTC LUCI CQ
parent cfea2182f8
commit 8c654aa059
3 changed files with 9 additions and 9 deletions

View File

@ -183,8 +183,8 @@ TEST_P(EncoderTest, TestDynamicBitrateChange) {
}
}
// kHighBps / kLowBps == 1.25, so require the high-bitrate run to produce at
// least 1.2 times the number of bytes.
EXPECT_LT(1.2 * num_bytes[kLowBps], num_bytes[kHighBps]);
// least 1.195 times the number of bytes.
EXPECT_LT(1.195 * num_bytes[kLowBps], num_bytes[kHighBps]);
}
// Checks that, given a target bitrate, the encoder does not overshoot too much.