diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-30 16:22:27 +0000 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2010-08-30 16:22:27 +0000 |
commit | 7e7c4b600819aa2f76c31eead5f18b5a27ecaf2c (patch) | |
tree | c38ccc220b2120ba955baec04cf77247520db347 /libavcodec/x86/cavsdsp_mmx.c | |
parent | 4bc16e83a79dc43e204a2dd048e8eaf7c06a69b0 (diff) | |
download | ffmpeg-7e7c4b600819aa2f76c31eead5f18b5a27ecaf2c.tar.gz |
Put ff_ prefix on non-static {put_signed,put,add}_pixels_clamped_mmx()
functions.
Originally committed as revision 24987 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/cavsdsp_mmx.c')
-rw-r--r-- | libavcodec/x86/cavsdsp_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/x86/cavsdsp_mmx.c b/libavcodec/x86/cavsdsp_mmx.c index 7872b3cced..15193a57f3 100644 --- a/libavcodec/x86/cavsdsp_mmx.c +++ b/libavcodec/x86/cavsdsp_mmx.c @@ -173,7 +173,7 @@ static void cavs_idct8_add_mmx(uint8_t *dst, int16_t *block, int stride) ); } - add_pixels_clamped_mmx(b2, dst, stride); + ff_add_pixels_clamped_mmx(b2, dst, stride); } /***************************************************************************** |