diff options
author | James Almer <jamrial@gmail.com> | 2014-06-08 12:56:55 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-06-08 20:06:28 +0200 |
commit | 85065d2a7ce3a3ea4371b189cba3db27f8714370 (patch) | |
tree | 438cb407c42c989891ce3c9a95ce95a4b698c1da /libavutil/x86 | |
parent | 4959c4a793313d0684026f14ffae61766c8b16fe (diff) | |
download | ffmpeg-85065d2a7ce3a3ea4371b189cba3db27f8714370.tar.gz |
x86/float_dsp: add missing femms
It was lost during the port.
Should fix fate on 3dnowext machines.
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/x86')
-rw-r--r-- | libavutil/x86/float_dsp.asm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavutil/x86/float_dsp.asm b/libavutil/x86/float_dsp.asm index aec0273235..ec3d22b230 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 |