This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 7d2a629ccf34949f4ccf7084b0b252e743da898a Author: Kacper Michajłow <[email protected]> AuthorDate: Fri Jun 5 07:47:15 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Fri Jun 5 08:22:37 2026 +0200 tests/checkasm/rv34dsp: pass correct buffer to bench function The test can negate stride, in which case we have to use adjusted `dst_newp`. Signed-off-by: Kacper Michajłow <[email protected]> --- tests/checkasm/rv34dsp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/checkasm/rv34dsp.c b/tests/checkasm/rv34dsp.c index 7b6dd531d4..f768a5d3bd 100644 --- a/tests/checkasm/rv34dsp.c +++ b/tests/checkasm/rv34dsp.c @@ -120,7 +120,7 @@ static void test_rv34_idct_add(const RV34DSPContext *const s) memcmp(block_ref, block_new, sizeof(block_new))) fail(); - bench_new(dst_new, stride, block_new); + bench_new(dst_newp, stride, block_new); } report("rv34_idct_add"); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
