From c998bdd9a03d3efa42bfba447579330d51d033fa Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 8 May 2005 18:48:19 +0000 Subject: [PATCH] fix PIC Originally committed as revision 4204 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/i386/dsputil_mmx.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/i386/dsputil_mmx.c b/libavcodec/i386/dsputil_mmx.c index 1d1f2b2137..7beeabf3ca 100644 --- a/libavcodec/i386/dsputil_mmx.c +++ b/libavcodec/i386/dsputil_mmx.c @@ -862,7 +862,7 @@ static inline void h264_loop_filter_chroma_mmx2(uint8_t *pix, int stride, int al "movd %%mm2, (%1) \n\t" :: "r"(pix-2*stride), "r"(pix), "r"((long)stride), "r"(tc0[1]<<16 | tc0[0]), - "r"(alpha), "r"(beta), "m"(ff_pw_4) + "r"(alpha), "g"(beta), "m"(ff_pw_4) ); }