This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit e18e229388b7b5d5bb3bb667533a9e853ae94737 Author: Shreesh Adiga <[email protected]> AuthorDate: Sat Mar 28 09:07:39 2026 +0530 Commit: Martin Storsjö <[email protected]> CommitDate: Thu Jul 2 09:03:25 2026 +0000 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. --- tests/checkasm/crc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkasm/crc.c b/tests/checkasm/crc.c index 94ade9ce37..d6fc9c2526 100644 --- a/tests/checkasm/crc.c +++ b/tests/checkasm/crc.c @@ -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; _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
