This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 07f632c7faa48d63c28e044a7dd1a7646f8fd095 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Thu Aug 13 15:15:01 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Fri Aug 14 21:21:52 2026 +0200 avcodec/x86/{h264_chromamc,rv40dsp}: Don't use PAVGB macro It always just expands to pavgb as there are no pure mmx functions here. Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/x86/h264_chromamc.asm | 4 ++-- libavcodec/x86/rv40dsp.asm | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/x86/h264_chromamc.asm b/libavcodec/x86/h264_chromamc.asm index 32564058ba..705da95feb 100644 --- a/libavcodec/x86/h264_chromamc.asm +++ b/libavcodec/x86/h264_chromamc.asm @@ -117,11 +117,11 @@ cglobal %1_%2_chroma_mc2, 6, 7, 0 %macro NOTHING 2-3 %endmacro %macro DIRECT_AVG 2 - PAVGB %1, %2 + pavgb %1, %2 %endmacro %macro COPY_AVG 3 movd %2, %3 - PAVGB %1, %2 + pavgb %1, %2 %endmacro diff --git a/libavcodec/x86/rv40dsp.asm b/libavcodec/x86/rv40dsp.asm index 07c119636a..53ad221c40 100644 --- a/libavcodec/x86/rv40dsp.asm +++ b/libavcodec/x86/rv40dsp.asm @@ -97,7 +97,7 @@ SECTION .text %endif packuswb %1, %1 %ifidn %3, avg - PAVGB %1, %2 + pavgb %1, %2 %endif movh [dstq], %1 %endmacro _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
