diff options
author | Mans Rullgard <mans@mansr.com> | 2011-03-11 02:49:55 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-03-29 19:31:45 +0100 |
commit | 6d9f52b2cd760eacf6cc6b7d694b0b00d991f1de (patch) | |
tree | b6275771445a9cf058d92cb5fb2847698a3414a8 /libavcodec/ac3dec.h | |
parent | d38345878cbb89e4d8d33bd79f47836d4e9cd637 (diff) | |
download | ffmpeg-6d9f52b2cd760eacf6cc6b7d694b0b00d991f1de.tar.gz |
ac3: move ff_ac3_bit_alloc_calc_bap to ac3dsp
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavcodec/ac3dec.h')
-rw-r--r-- | libavcodec/ac3dec.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/ac3dec.h b/libavcodec/ac3dec.h index 9d0ffc313e..3459441bbd 100644 --- a/libavcodec/ac3dec.h +++ b/libavcodec/ac3dec.h @@ -52,6 +52,7 @@ #include "libavutil/lfg.h" #include "ac3.h" +#include "ac3dsp.h" #include "get_bits.h" #include "dsputil.h" #include "fft.h" @@ -192,6 +193,7 @@ typedef struct { ///@defgroup opt optimization DSPContext dsp; ///< for optimization + AC3DSPContext ac3dsp; FmtConvertContext fmt_conv; ///< optimized conversion functions float mul_bias; ///< scaling for float_to_int16 conversion ///@} |