diff options
author | David Conrad <lessen42@gmail.com> | 2009-04-15 02:25:42 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-04-15 02:25:42 +0000 |
commit | 9bf0fdf378cd8d93a105e7b26d143b4718656e87 (patch) | |
tree | 00a587202735bb017448460077b168ced4f7f4e1 /libavcodec/x86/dsputil_mmx.c | |
parent | 8013da736467d0111e96801dbb1acdccc0bb0b10 (diff) | |
download | ffmpeg-9bf0fdf378cd8d93a105e7b26d143b4718656e87.tar.gz |
VC1: extend MMX qpel MC to include MMX2 avg qpel
Originally committed as revision 18519 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/x86/dsputil_mmx.c')
-rw-r--r-- | libavcodec/x86/dsputil_mmx.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/x86/dsputil_mmx.c b/libavcodec/x86/dsputil_mmx.c index dea45e190b..0687fa8f9e 100644 --- a/libavcodec/x86/dsputil_mmx.c +++ b/libavcodec/x86/dsputil_mmx.c @@ -1813,6 +1813,9 @@ void ff_vc1dsp_init_mmx(DSPContext* dsp, AVCodecContext *avctx); void ff_put_vc1_mspel_mc00_mmx(uint8_t *dst, const uint8_t *src, int stride, int rnd) { put_pixels8_mmx(dst, src, stride, 8); } +void ff_avg_vc1_mspel_mc00_mmx2(uint8_t *dst, const uint8_t *src, int stride, int rnd) { + avg_pixels8_mmx2(dst, src, stride, 8); +} /* external functions, from idct_mmx.c */ void ff_mmx_idct(DCTELEM *block); |