diff options
author | foo86 <foobaz86@gmail.com> | 2016-05-01 08:41:43 -0700 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2016-05-01 16:50:29 -0300 |
commit | 2df7d4fa4524b6f83c65428d75192267a2d0c113 (patch) | |
tree | a7783dc2a73e3f6b92ac290296ea5605855d450a /libavcodec/dca_core.h | |
parent | bc2fe362284257b96519a2fcbe5383fb6dad366b (diff) | |
download | ffmpeg-2df7d4fa4524b6f83c65428d75192267a2d0c113.tar.gz |
avcodec/dca: move huffman data into separate object file
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/dca_core.h')
-rw-r--r-- | libavcodec/dca_core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca_core.h b/libavcodec/dca_core.h index 112b72ba41..e84bdab18e 100644 --- a/libavcodec/dca_core.h +++ b/libavcodec/dca_core.h @@ -33,6 +33,7 @@ #include "dca_exss.h" #include "dcadsp.h" #include "dcadct.h" +#include "dcahuff.h" #include "fft.h" #include "synth_filter.h" @@ -44,7 +45,6 @@ #define DCA_PCMBLOCK_SAMPLES 32 #define DCA_ADPCM_COEFFS 4 #define DCA_LFE_HISTORY 8 -#define DCA_CODE_BOOKS 10 #define DCA_ABITS_MAX 26 #define DCA_CORE_CHANNELS_MAX 6 |