diff options
author | James Almer <jamrial@gmail.com> | 2014-03-05 19:44:36 -0300 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-09-20 14:14:30 +0200 |
commit | 9b9048a3ddfe97e33a26c87f8c4b029032d49ad8 (patch) | |
tree | 0182d2a4a111b65cb23a154ee1e20930af1862c6 | |
parent | 70dc7bb893db63e7c8d8592e4730b69af20f6be4 (diff) | |
download | ffmpeg-9b9048a3ddfe97e33a26c87f8c4b029032d49ad8.tar.gz |
x86/dsputil: add emms to ff_scalarproduct_int16_mmxext()
Also undo the changes to ra144enc.c from previous commits.
Should fix ticket #3429
Signed-off-by: James Almer <jamrial@gmail.com>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 9e0e1f9067430de1655a7b28536b5afed48bded5)
Conflicts:
libavcodec/ra144enc.c
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/ra144enc.c | 1 | ||||
-rw-r--r-- | libavcodec/x86/dsputil.asm | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/ra144enc.c b/libavcodec/ra144enc.c index 21d38dcea0..a67b14a704 100644 --- a/libavcodec/ra144enc.c +++ b/libavcodec/ra144enc.c @@ -34,7 +34,6 @@ #include "celp_filters.h" #include "ra144.h" - static av_cold int ra144_encode_close(AVCodecContext *avctx) { RA144Context *ractx = avctx->priv_data; diff --git a/libavcodec/x86/dsputil.asm b/libavcodec/x86/dsputil.asm index aa18bddd67..32e6134d45 100644 --- a/libavcodec/x86/dsputil.asm +++ b/libavcodec/x86/dsputil.asm @@ -61,6 +61,9 @@ cglobal scalarproduct_int16, 3,3,3, v1, v2, order %endif paddd m2, m0 movd eax, m2 +%if mmsize == 8 + emms +%endif RET ; int scalarproduct_and_madd_int16(int16_t *v1, int16_t *v2, int16_t *v3, int order, int mul) |