This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit a7c1326b16c5cf4f89d9d64b838f7d9dfd53cafd Author: Andreas Rheinhardt <[email protected]> AuthorDate: Thu Aug 13 16:18:02 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Fri Aug 14 21:21:52 2026 +0200 avutil/x86/x86util: Remove PSHUFLW macro Useless in the absence of mmx(ext). Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavutil/x86/x86util.asm | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/libavutil/x86/x86util.asm b/libavutil/x86/x86util.asm index 75d2fee3d2..775c5275c9 100644 --- a/libavutil/x86/x86util.asm +++ b/libavutil/x86/x86util.asm @@ -403,12 +403,7 @@ paddd %1, %2 %endif %if notcpuflag(xop) || sizeof%1 != 16 -%if cpuflag(mmxext) - PSHUFLW %2, %1, q0032 -%else ; mmx - mova %2, %1 - psrlq %2, 32 -%endif + pshuflw %2, %1, q0032 paddd %1, %2 %endif %undef %1 @@ -466,14 +461,6 @@ %endif %endmacro -%macro PSHUFLW 1+ - %if mmsize == 8 - pshufw %1 - %else - pshuflw %1 - %endif -%endmacro - %macro DEINTB 5 ; mask, reg1, mask, reg2, optional src to fill masks from %ifnum %5 pand m%3, m%5, m%4 ; src .. y6 .. y4 _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
