diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2005-05-08 18:48:19 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2005-05-08 18:48:19 +0000 |
commit | c998bdd9a03d3efa42bfba447579330d51d033fa (patch) | |
tree | d3e435bf874015f6a7da400936301237b98a41e5 | |
parent | eb94aca926131cfbe5d818a679c6872a8bb97049 (diff) | |
download | ffmpeg-c998bdd9a03d3efa42bfba447579330d51d033fa.tar.gz |
fix PIC
Originally committed as revision 4204 to svn://svn.ffmpeg.org/ffmpeg/trunk
-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 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) ); } |