PR #24108 opened by Martin Storsjö (mstorsjo) URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/24108 Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/24108.patch
Otherwise, if running both ttadsp and ttaencdsp tests in the same checkasm run, we get failures as the two functions don't match. This fixes running the "checkasm" binary without any "--test" parameter. From 8ef92e2ea4a485d88dc167995f745cc75f57f722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Storsj=C3=B6?= <[email protected]> Date: Wed, 12 Aug 2026 15:23:24 +0300 Subject: [PATCH] tests/checkasm: Give the ttaencdsp function a separate name Otherwise, if running both ttadsp and ttaencdsp tests in the same checkasm run, we get failures as the two functions don't match. This fixes running the "checkasm" binary without any "--test" parameter. --- tests/checkasm/ttadsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkasm/ttadsp.c b/tests/checkasm/ttadsp.c index d4c95e5b16..13c75c574d 100644 --- a/tests/checkasm/ttadsp.c +++ b/tests/checkasm/ttadsp.c @@ -84,7 +84,7 @@ void checkasm_check_ttaencdsp(void) ff_ttaencdsp_init(&ttaencdsp); - if (check_func(ttaencdsp.filter_process, "filter_process")) + if (check_func(ttaencdsp.filter_process, "enc_filter_process")) check_filter_process(); report("filter_process"); } -- 2.52.0 _______________________________________________ ffmpeg-devel mailing list -- [email protected] To unsubscribe send an email to [email protected]
