diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-30 12:30:05 +0000 |
---|---|---|
committer | Ramiro Polla <ramiro.polla@gmail.com> | 2009-04-30 12:30:05 +0000 |
commit | bf4f19dc654b91dfc8405e124cac8a1eb912da74 (patch) | |
tree | 6bb085dc5b6e03b987e1a1aca5fec8a5a5b3549d /libavcodec/dsputil.c | |
parent | 52bcc8e13c0305c6d1f05f1b95ab5965cc3ca81c (diff) | |
download | ffmpeg-bf4f19dc654b91dfc8405e124cac8a1eb912da74.tar.gz |
mlpdec: Move MLP's filter_channel() to dsputils.
Originally committed as revision 18721 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index df38b2d8ce..859aca3137 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2754,6 +2754,10 @@ void ff_avg_cavs_qpel16_mc00_c(uint8_t *dst, uint8_t *src, int stride) { } #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 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) #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 |