From 6cecd63005b29a1dc3a5104e6ac85fd112705122 Mon Sep 17 00:00:00 2001 From: David Conrad Date: Tue, 14 Apr 2009 19:26:33 +0000 Subject: VC1: Do qpel when needed for both MVs in a B frame Originally committed as revision 18511 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/dsputil.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libavcodec/dsputil.c') diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 3e7bfc35e3..e2e13714f2 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2737,6 +2737,9 @@ void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx); void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { put_pixels8_c(dst, src, stride, 8); } +void ff_avg_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { + avg_pixels8_c(dst, src, stride, 8); +} #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */ void ff_intrax8dsp_init(DSPContext* c, AVCodecContext *avctx); -- cgit v1.2.3