Lower threshold to skip YUV-RGB conversion tests again (#1590)
Lower the threshold for skipping the YUV<->RGB conversion tests from
30 * 1024 * 1024 to 25 * 1024 * 1024.
Bug: oss-fuzz:62292
[skip ci]
diff --git a/tests/oss-fuzz/avif_decode_fuzzer.cc b/tests/oss-fuzz/avif_decode_fuzzer.cc
index 3081171..387a215 100644
--- a/tests/oss-fuzz/avif_decode_fuzzer.cc
+++ b/tests/oss-fuzz/avif_decode_fuzzer.cc
@@ -32,7 +32,7 @@
if (result == AVIF_RESULT_OK) {
for (int loop = 0; loop < 2; ++loop) {
while (avifDecoderNextImage(decoder) == AVIF_RESULT_OK) {
- if (((decoder->image->width * decoder->image->height) > (30 * 1024 * 1024)) || (loop != 0) ||
+ if (((decoder->image->width * decoder->image->height) > (25 * 1024 * 1024)) || (loop != 0) ||
(decoder->imageIndex != 0)) {
// Skip the YUV<->RGB conversion tests, which are time-consuming for large
// images. It suffices to run these tests only for loop == 0 and only for the