1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

100l for myself (breaking amd64)

Originally committed as revision 4336 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Michael Niedermayer 2005-06-01 18:04:01 +00:00
parent ca15919699
commit 435b0720a8

View File

@ -675,13 +675,13 @@ void ff_h264_idct_add_mmx2(uint8_t *dst, int16_t *block, int stride)
asm volatile(
STORE_DIFF_4P( %%mm0, %%mm1, %%mm7)
"addl %1, %0 \n\t"
"add %1, %0 \n\t"
STORE_DIFF_4P( %%mm2, %%mm1, %%mm7)
"addl %1, %0 \n\t"
"add %1, %0 \n\t"
STORE_DIFF_4P( %%mm3, %%mm1, %%mm7)
"addl %1, %0 \n\t"
"add %1, %0 \n\t"
STORE_DIFF_4P( %%mm4, %%mm1, %%mm7)
: "+r"(dst)
: "r" (stride)
: "r" ((long)stride)
);
}