This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit f3343f51b159c420724c04315e457704f112449e Author: Andreas Rheinhardt <[email protected]> AuthorDate: Tue Jun 30 15:22:09 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Fri Jul 3 16:09:57 2026 +0200 tests/checkasm/motion: Improve reporting Signed-off-by: Andreas Rheinhardt <[email protected]> --- tests/checkasm/motion.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/checkasm/motion.c b/tests/checkasm/motion.c index 960a41a8ed..e3d5acc5df 100644 --- a/tests/checkasm/motion.c +++ b/tests/checkasm/motion.c @@ -124,11 +124,13 @@ static void check_motion(void) test_motion(buf, me_ctx.pix_abs[i][j]); } } + report("pix_abs"); #define XX(me_cmp_array) \ for (int i = 0; i < FF_ARRAY_ELEMS(me_ctx.me_cmp_array); i++) { \ snprintf(buf, sizeof(buf), #me_cmp_array "_%d", i); \ test_motion(buf, me_ctx.me_cmp_array[i]); \ + report(#me_cmp_array); \ } ME_CMP_1D_ARRAYS(XX) #undef XX @@ -137,5 +139,4 @@ static void check_motion(void) void checkasm_check_motion(void) { check_motion(); - report("motion"); } _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
