diff 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
line wrap: on
line diff
--- a/dsputil.c	Thu Apr 30 12:06:34 2009 +0000
+++ b/dsputil.c	Thu Apr 30 12:30:05 2009 +0000
@@ -2754,6 +2754,10 @@
 }
 #endif /* CONFIG_CAVS_DECODER */
 
+#if CONFIG_MLP_DECODER || CONFIG_TRUEHD_DECODER
+    void ff_mlp_init(DSPContext* c, AVCodecContext *avctx);
+#endif
+
 #if CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER
 /* VC-1 specific */
 void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx);
@@ -4542,6 +4546,10 @@
 #if CONFIG_CAVS_DECODER
     ff_cavsdsp_init(c,avctx);
 #endif
+
+#if CONFIG_MLP_DECODER || CONFIG_TRUEHD_DECODER
+    ff_mlp_init(c, avctx);
+#endif
 #if CONFIG_VC1_DECODER || CONFIG_WMV3_DECODER
     ff_vc1dsp_init(c,avctx);
 #endif