[FFmpeg-cvslog] x86/float_dsp: add missing femms

James Almer git at videolan.org
Sun Jun 8 20:22:51 CEST 2014


ffmpeg | branch: master | James Almer <jamrial at gmail.com> | Sun Jun  8 12:56:55 2014 -0300| [85065d2a7ce3a3ea4371b189cba3db27f8714370] | committer: Michael Niedermayer

x86/float_dsp: add missing femms

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

Signed-off-by: James Almer <jamrial at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=85065d2a7ce3a3ea4371b189cba3db27f8714370
---

 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
 



More information about the ffmpeg-cvslog mailing list