[FFmpeg-cvslog] swresample/x86/audio_convert: add emms to CONV
Michael Niedermayer
git at videolan.org
Tue Jun 18 02:54:48 CEST 2013
ffmpeg | branch: release/0.11 | Michael Niedermayer <michaelni at gmx.at> | Tue Jun 18 02:09:46 2013 +0200| [d5b068d44b4bf42951611a92d3697786564ef002] | committer: Carl Eugen Hoyos
swresample/x86/audio_convert: add emms to CONV
Fixes ticket #1874
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>
(cherry picked from commit ca2818b88155029bb6f989ee522e7f8e9e9f5927)
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=d5b068d44b4bf42951611a92d3697786564ef002
---
libswresample/x86/audio_convert.asm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/libswresample/x86/audio_convert.asm b/libswresample/x86/audio_convert.asm
index 6fc86f0..d5563a2 100644
--- a/libswresample/x86/audio_convert.asm
+++ b/libswresample/x86/audio_convert.asm
@@ -196,7 +196,12 @@ cglobal %2_to_%1_%3, 3, 3, 6, dst, src, len
add lenq, 2*mmsize/(1<<%4)
%endif
jl .next
+%if mmsize == 8
+ emms
+ RET
+%else
REP_RET
+%endif
%endmacro
%macro PACK_6CH 5-7
More information about the ffmpeg-cvslog
mailing list