From 89c7d8058cd4147ac255614cdcd6568bacdacf97 Mon Sep 17 00:00:00 2001 From: Vitor Sessak Date: Thu, 24 Jun 2010 08:53:32 +0000 Subject: [PATCH] Fix compilation on x64. Originally committed as revision 23753 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/x86/mpegaudiodec_mmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/x86/mpegaudiodec_mmx.c b/libavcodec/x86/mpegaudiodec_mmx.c index d9efffdbba..e7e1150789 100644 --- a/libavcodec/x86/mpegaudiodec_mmx.c +++ b/libavcodec/x86/mpegaudiodec_mmx.c @@ -74,7 +74,7 @@ static void apply_window(const float *buf, const float *win1, "movaps %%xmm0, (%4,%0) \n\t" "movaps %%xmm4, (%5,%0) \n\t" - "addl $16, %0 \n\t" + "add $16, %0 \n\t" "jl 1b \n\t" :"+&r"(count) :"r"(win1a), "r"(win2a), "r"(bufa), "r"(sum1a), "r"(sum2a)