comparison dsputil.c @ 9437:8aa2e86549cd libavcodec

VC1: Do qpel when needed for both MVs in a B frame
author conrad
date Tue, 14 Apr 2009 19:26:33 +0000
parents a031926f7d6b
children ef3a7b711cc0
comparison
equal deleted inserted replaced
9436:dfed6a243bab 9437:8aa2e86549cd
2735 void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx); 2735 void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx);
2736 2736
2737 void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { 2737 void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
2738 put_pixels8_c(dst, src, stride, 8); 2738 put_pixels8_c(dst, src, stride, 8);
2739 } 2739 }
2740 void ff_avg_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
2741 avg_pixels8_c(dst, src, stride, 8);
2742 }
2740 #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */ 2743 #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */
2741 2744
2742 void ff_intrax8dsp_init(DSPContext* c, AVCodecContext *avctx); 2745 void ff_intrax8dsp_init(DSPContext* c, AVCodecContext *avctx);
2743 2746
2744 /* H264 specific */ 2747 /* H264 specific */