checkasm/crc: increase size of input buffer from 8k to 16k

For AArch64, AV_CRC_32_IEEE_LE implementation has codepath which is triggered
when input buffer size is >= 8192. Thus to ensure sufficient test coverage,
size of the input buffer in the test file is being increased from 8192 to 16384.
This commit is contained in:
Shreesh Adiga
2026-03-28 09:07:39 +05:30
committed by Martin Storsjö
parent 915bac7bdc
commit e18e229388
+1 -1
View File
@@ -43,7 +43,7 @@ static void check_crc(const AVCRC *table_new, const char *name, unsigned idx)
if (!table_ref)
return;
DECLARE_ALIGNED(4, uint8_t, buf)[8192];
DECLARE_ALIGNED(4, uint8_t, buf)[16384];
static size_t offsets[AV_CRC_MAX + 1];
static size_t sizes[AV_CRC_MAX + 1];
static unsigned sizes_initialized = 0;