comparison dsputil.c @ 9585:5e1d9508b62f libavcodec

mlpdec: Move MLP's filter_channel() to dsputils.
author ramiro
date Thu, 30 Apr 2009 12:30:05 +0000
parents daee921fb6bb
children c7420bfe4da0
comparison
equal deleted inserted replaced
9584:e30999f7a631 9585:5e1d9508b62f
2752 void ff_avg_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) { 2752 void ff_avg_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) {
2753 avg_pixels16_c(dst, src, stride, 16); 2753 avg_pixels16_c(dst, src, stride, 16);
2754 } 2754 }
2755 #endif /* CONFIG_CAVS_DECODER */ 2755 #endif /* CONFIG_CAVS_DECODER */
2756 2756
2757 #if CONFIG_MLP_DECODER || CONFIG_TRUEHD_DECODER
2758 void ff_mlp_init(DSPContext* c, AVCodecContext *avctx);
2759 #endif
2760
2757 #if CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER 2761 #if CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER
2758 /* VC-1 specific */ 2762 /* VC-1 specific */
2759 void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx); 2763 void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx);
2760 2764
2761 void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { 2765 void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) {
4540 c->draw_edges = draw_edges_c; 4544 c->draw_edges = draw_edges_c;
4541 4545
4542 #if CONFIG_CAVS_DECODER 4546 #if CONFIG_CAVS_DECODER
4543 ff_cavsdsp_init(c,avctx); 4547 ff_cavsdsp_init(c,avctx);
4544 #endif 4548 #endif
4549
4550 #if CONFIG_MLP_DECODER || CONFIG_TRUEHD_DECODER
4551 ff_mlp_init(c, avctx);
4552 #endif
4545 #if CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER 4553 #if CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER
4546 ff_vc1dsp_init(c,avctx); 4554 ff_vc1dsp_init(c,avctx);
4547 #endif 4555 #endif
4548 #if CONFIG_WMV2_DECODER || CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER 4556 #if CONFIG_WMV2_DECODER || CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER
4549 ff_intrax8dsp_init(c,avctx); 4557 ff_intrax8dsp_init(c,avctx);