This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 9a62712427b75ac56dfd9069f13c037b13143d15 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Thu Aug 13 15:57:48 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Fri Aug 14 21:21:52 2026 +0200 avutil/x86/x86util: Remove unused LSHIFT, RSHIFT macros Useless in the absence of mmx. Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavutil/x86/x86util.asm | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm index 3b09cc8207..929edbb457 100644 --- a/libavutil/x86/x86util.asm +++ b/libavutil/x86/x86util.asm @@ -872,22 +872,6 @@ %endif %endmacro -%macro LSHIFT 2 -%if mmsize > 8 - pslldq %1, %2 -%else - psllq %1, 8*(%2) -%endif -%endmacro - -%macro RSHIFT 2 -%if mmsize > 8 - psrldq %1, %2 -%else - psrlq %1, 8*(%2) -%endif -%endmacro - %macro MOVHL 2 ; dst, src %ifidn %1, %2 punpckhqdq %1, %2 _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
