diff options
author | Vitor Sessak <vitor1001@gmail.com> | 2010-06-24 08:53:32 +0000 |
---|---|---|
committer | Vitor Sessak <vitor1001@gmail.com> | 2010-06-24 08:53:32 +0000 |
commit | 89c7d8058cd4147ac255614cdcd6568bacdacf97 (patch) | |
tree | 1a21202eeddef92f5f4b8d9134021b7be5cea760 /libavcodec/x86 | |
parent | 57dbd12b6dcff29526ae0da5168d70146cc72b39 (diff) | |
download | ffmpeg-89c7d8058cd4147ac255614cdcd6568bacdacf97.tar.gz |
Fix compilation on x64.
Originally committed as revision 23753 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86')
-rw-r--r-- | libavcodec/x86/mpegaudiodec_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |