From 2df7d4fa4524b6f83c65428d75192267a2d0c113 Mon Sep 17 00:00:00 2001 From: foo86 Date: Sun, 1 May 2016 08:41:43 -0700 Subject: avcodec/dca: move huffman data into separate object file Signed-off-by: James Almer --- libavcodec/dcadec.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libavcodec/dcadec.c') diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index f3c397250c..92c233498c 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -22,7 +22,7 @@ #include "libavutil/channel_layout.h" #include "dcadec.h" -#include "dcamath.h" +#include "dcahuff.h" #include "dca_syncwords.h" #include "profiles.h" @@ -350,6 +350,8 @@ static av_cold int dcadec_init(AVCodecContext *avctx) s->exss.avctx = avctx; s->xll.avctx = avctx; + ff_dca_init_vlcs(); + if (ff_dca_core_init(&s->core) < 0) return AVERROR(ENOMEM); -- cgit v1.2.3