This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 51c756382495f15116df6b39f7fceb09758629d2 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Fri Aug 7 17:43:44 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Sun Aug 9 17:28:05 2026 +0200 avcodec/x86/diracdsp_init: Name function parameters Also fix the comment of the same function in assembly. Reviewed-by: Lynne <[email protected]> Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/x86/diracdsp.asm | 2 +- libavcodec/x86/diracdsp_init.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libavcodec/x86/diracdsp.asm b/libavcodec/x86/diracdsp.asm index 33e6e9f40d..1267cd6c98 100644 --- a/libavcodec/x86/diracdsp.asm +++ b/libavcodec/x86/diracdsp.asm @@ -90,7 +90,7 @@ cglobal dirac_hpel_filter_v, 4,6,8, dst, src, stride, width, src0, stridex3 jg .loop RET -; dirac_hpel_filter_h_sse2(uint8_t *dst, uint8_t *src, int width); +; ff_dirac_hpel_filter_h_sse2(uint8_t *dst, const uint8_t *src, int width); cglobal dirac_hpel_filter_h, 3,3,8, dst, src, width dec widthd pxor m7, m7 diff --git a/libavcodec/x86/diracdsp_init.c b/libavcodec/x86/diracdsp_init.c index a661788386..031a4b659d 100644 --- a/libavcodec/x86/diracdsp_init.c +++ b/libavcodec/x86/diracdsp_init.c @@ -45,7 +45,7 @@ void ff_dequant_subband_32_sse4(uint8_t *src, uint8_t *dst, ptrdiff_t stride, co #define HPEL_FILTER(MMSIZE, EXT) \ void ff_dirac_hpel_filter_v_ ## EXT(uint8_t *dst, const uint8_t *src, \ ptrdiff_t stride, int width); \ - void ff_dirac_hpel_filter_h_ ## EXT(uint8_t *, const uint8_t *, int); \ + void ff_dirac_hpel_filter_h_ ## EXT(uint8_t *dst, const uint8_t *src, int width); \ \ static void dirac_hpel_filter_ ## EXT(uint8_t *dsth, uint8_t *dstv, uint8_t *dstc, \ const uint8_t *src, ptrdiff_t stride, int width, int height) \ _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
