diff options
author | Loren Merritt <lorenm@u.washington.edu> | 2008-02-03 16:19:37 +0000 |
---|---|---|
committer | Loren Merritt <lorenm@u.washington.edu> | 2008-02-03 16:19:37 +0000 |
commit | 6c01d0069d6ee516c31e92ccffbc5ef99a86b90c (patch) | |
tree | 82a18f5f207b3b6324cc26495b49ff4f8ee76832 /libavcodec/i386/h264dsp_mmx.c | |
parent | 7abe438045bef535420f4f3e94dd9b3947cde805 (diff) | |
download | ffmpeg-6c01d0069d6ee516c31e92ccffbc5ef99a86b90c.tar.gz |
use mmx2/3dnow avg functions in avg_qpel*_mc00
Originally committed as revision 11828 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/i386/h264dsp_mmx.c')
-rw-r--r-- | libavcodec/i386/h264dsp_mmx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/i386/h264dsp_mmx.c b/libavcodec/i386/h264dsp_mmx.c index e210d4b081..cb9abd1896 100644 --- a/libavcodec/i386/h264dsp_mmx.c +++ b/libavcodec/i386/h264dsp_mmx.c @@ -1310,7 +1310,7 @@ static void OPNAME ## pixels16_l2_shift5_ ## MMX(uint8_t *dst, int16_t *src16, u #define H264_MC(OPNAME, SIZE, MMX) \ static void OPNAME ## h264_qpel ## SIZE ## _mc00_ ## MMX (uint8_t *dst, uint8_t *src, int stride){\ - OPNAME ## pixels ## SIZE ## _mmx(dst, src, stride, SIZE);\ + OPNAME ## pixels ## SIZE ## _ ## MMX(dst, src, stride, SIZE);\ }\ \ static void OPNAME ## h264_qpel ## SIZE ## _mc10_ ## MMX(uint8_t *dst, uint8_t *src, int stride){\ |