diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-23 23:24:38 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2003-10-23 23:24:38 +0000 |
commit | 01a2ddaf85037db70ae73efe1fcc74e148313523 (patch) | |
tree | 2eac61318c0d4eba3f68d7bb75f8243f6d1bf05f /libavcodec | |
parent | cf3bf5bbaa049667612a4b992239cc99dc31aee8 (diff) | |
download | ffmpeg-01a2ddaf85037db70ae73efe1fcc74e148313523.tar.gz |
1l
Originally committed as revision 2424 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/i386/dsputil_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index ec2b9cb18b..3bded6f247 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -563,7 +563,7 @@ static int sse16_mmx(void *v, uint8_t * pix1, uint8_t * pix2, int line_size) { "psrlq $32, %%mm7\n" /* shift hi dword to lo */ "paddd %%mm7,%%mm1\n" "movd %%mm1,%2\n" - : "+r" (pix1), "+r" (pix2), "=r"(tmp) : "r" (line_size) : "ecx"); + : "+r" (pix1), "+r" (pix2), "=r"(tmp) : "r" (line_size) : "%ecx"); return tmp; } |