diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2007-02-22 00:04:36 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2007-02-22 00:04:36 +0000 |
commit | 470d2d03cc5a0ee5cca225ec81027a6b86d92642 (patch) | |
tree | 00ec5a5cd5fc98f3aeab4be8aa8d6e3e1da8f8f5 | |
parent | 85975aa9a58c0c187116efe9427efea2d16abc41 (diff) | |
download | ffmpeg-470d2d03cc5a0ee5cca225ec81027a6b86d92642.tar.gz |
gcc 2.95 fix
Originally committed as revision 8059 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/i386/dsputil_h264_template_mmx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/i386/dsputil_h264_template_mmx.c b/libavcodec/i386/dsputil_h264_template_mmx.c index daaa8d9477..8fa9eac09e 100644 --- a/libavcodec/i386/dsputil_h264_template_mmx.c +++ b/libavcodec/i386/dsputil_h264_template_mmx.c @@ -188,8 +188,8 @@ static void H264_CHROMA_MC4_TMPL(uint8_t *dst/*align 4*/, uint8_t *src/*align 1* "pxor %%mm7, %%mm7 \n\t" "movd %5, %%mm2 \n\t" "movd %6, %%mm3 \n\t" - "movq %7, %%mm4 \n\t" - "movq %7, %%mm5 \n\t" + "movq "MANGLE(ff_pw_8)", %%mm4\n\t" + "movq "MANGLE(ff_pw_8)", %%mm5\n\t" "punpcklwd %%mm2, %%mm2 \n\t" "punpcklwd %%mm3, %%mm3 \n\t" "punpcklwd %%mm2, %%mm2 \n\t" @@ -246,7 +246,7 @@ static void H264_CHROMA_MC4_TMPL(uint8_t *dst/*align 4*/, uint8_t *src/*align 1* "sub $2, %2 \n\t" "jnz 1b \n\t" : "+r"(dst), "+r"(src), "+r"(h) - : "r"((long)stride), "m"(ff_pw_32), "m"(x), "m"(y), "m"(ff_pw_8) + : "r"((long)stride), "m"(ff_pw_32), "m"(x), "m"(y) ); } |