This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 0a59c39dad3da0e530836a7e7d1901134a0b592e Author: Andreas Rheinhardt <[email protected]> AuthorDate: Mon Aug 31 18:05:27 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Wed Sep 2 22:36:06 2026 +0200 avcodec/x86/ac3dsp: Avoid reg-reg mov when forcing VEX encoding Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavcodec/x86/ac3dsp.asm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/libavcodec/x86/ac3dsp.asm b/libavcodec/x86/ac3dsp.asm index bacd2434bf..e02f7f32b9 100644 --- a/libavcodec/x86/ac3dsp.asm +++ b/libavcodec/x86/ac3dsp.asm @@ -228,8 +228,7 @@ cglobal ac3_extract_exponents, 3, 3, 4, exp, coef, len por m0, m2 cvtdq2ps m1, m0 psrld m1, 23 - mova m0, m3 - psubd m0, m1 + psubd m0, m3, m1 ; move the lowest byte in each of 4 dwords to the low dword ; NOTE: We cannot just extract the low bytes with pshufb because the dword ; result for 16777215 is -1 due to float inaccuracy. Using packuswb -- To stop receiving notification emails like this one, please contact [email protected]. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
