This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 5656e9e5ab6a58e0a9c30510040b4724e6ff04ab Author: Kacper Michajłow <[email protected]> AuthorDate: Tue Aug 11 16:19:00 2026 +0200 Commit: Kacper Michajłow <[email protected]> CommitDate: Wed Aug 12 17:21:06 2026 +0200 avcodec/tests/x86/dct: fix ff_prores_idct_put_10 declaration mismatch Signed-off-by: Kacper Michajłow <[email protected]> --- libavcodec/tests/x86/dct.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libavcodec/tests/x86/dct.c b/libavcodec/tests/x86/dct.c index f879ab1d42..9f21a93637 100644 --- a/libavcodec/tests/x86/dct.c +++ b/libavcodec/tests/x86/dct.c @@ -27,8 +27,8 @@ #include "libavcodec/x86/simple_idct.h" #if CONFIG_PRORES_DECODER && ARCH_X86_64 && HAVE_X86ASM -void ff_prores_idct_put_10_sse2(uint16_t *dst, int linesize, - int16_t *block, int16_t *qmat); +void ff_prores_idct_put_10_sse2(uint16_t *dst, ptrdiff_t linesize, + int16_t *block, const int16_t *qmat); #define PR_WRAP(INSN) \ static void ff_prores_idct_put_10_##INSN##_wrap(int16_t *dst){ \ @@ -50,8 +50,8 @@ static void ff_prores_idct_put_10_##INSN##_wrap(int16_t *dst){ \ PR_WRAP(sse2) # if HAVE_AVX_EXTERNAL -void ff_prores_idct_put_10_avx(uint16_t *dst, int linesize, - int16_t *block, int16_t *qmat); +void ff_prores_idct_put_10_avx(uint16_t *dst, ptrdiff_t linesize, + int16_t *block, const int16_t *qmat); PR_WRAP(avx) # endif _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
