comparison dsputil.c @ 3665:9d942506b1f2 libavcodec

Drop put_vc1_qpel_pixels_tab as they won't be needed anymore.
author kostya
date Sat, 02 Sep 2006 04:58:51 +0000
parents 8e180a3276fe
children faa8dc533ad3
comparison
equal deleted inserted replaced
3664:de842f000384 3665:9d942506b1f2
2620 void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx); 2620 void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx);
2621 2621
2622 void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { 2622 void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
2623 put_pixels8_c(dst, src, stride, 8); 2623 put_pixels8_c(dst, src, stride, 8);
2624 } 2624 }
2625
2626 void ff_put_vc1_qpel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
2627 put_pixels8_c(dst, src, stride, 8);
2628 }
2629 #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */ 2625 #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */
2630 2626
2631 static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ 2627 static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){
2632 uint8_t *cm = cropTbl + MAX_NEG_CROP; 2628 uint8_t *cm = cropTbl + MAX_NEG_CROP;
2633 int i; 2629 int i;