[FFmpeg-devel] [PATCH] x86/float_dsp: add missing femms

James Almer jamrial at gmail.com
Sun Jun 8 17:56:55 CEST 2014


It was lost during the port.
Should fix fate on 3dnowext machines.

Signed-off-by: James Almer <jamrial at gmail.com>
---
 libavutil/x86/float_dsp.asm | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm
index aec0273..ec3d22b 100644
--- a/libavutil/x86/float_dsp.asm
+++ b/libavutil/x86/float_dsp.asm
@@ -238,6 +238,9 @@ cglobal vector_fmul_window, 5, 6, 6, dst, src0, src1, win, len, len1
     sub       len1q, mmsize
     add       lenq,  mmsize
     jl .loop
+%if mmsize == 8
+    femms
+%endif
     REP_RET
 %endmacro
 
-- 
1.8.5.5



More information about the ffmpeg-devel mailing list