diff options
author | David Conrad <lessen42@gmail.com> | 2009-04-14 19:26:33 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-04-14 19:26:33 +0000 |
commit | 6cecd63005b29a1dc3a5104e6ac85fd112705122 (patch) | |
tree | e32137ac20373aaca1df988efd73c3f7a5545b16 /libavcodec/dsputil.c | |
parent | 44be8d4278a04cb07baceadab48dde8df7aeeb05 (diff) | |
download | ffmpeg-6cecd63005b29a1dc3a5104e6ac85fd112705122.tar.gz |
VC1: Do qpel when needed for both MVs in a B frame
Originally committed as revision 18511 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 3 insertions, 0 deletions
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); |