diff options
author | Alex Converse <alex.converse@gmail.com> | 2013-10-14 13:51:46 -0700 |
---|---|---|
committer | Alex Converse <alex.converse@gmail.com> | 2013-10-23 00:08:29 -0700 |
commit | b3be41ca82529d60f90107d4e0d5b59daab00920 (patch) | |
tree | a284786326d1da69b6c66d01de277d8e7fad197b /libavcodec/aac.h | |
parent | f457edb69794c7e13b3630456d72f7942fff19f7 (diff) | |
download | ffmpeg-b3be41ca82529d60f90107d4e0d5b59daab00920.tar.gz |
aac: Add support for Enhanced AAC Low Delay (ER AAC ELD).
This does not include support for LD SBR, epTool, data resilience, nor
the 960 transform family.
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r-- | libavcodec/aac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 40e8dfb50a..375e6b1717 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -234,7 +234,7 @@ typedef struct SingleChannelElement { int sf_idx[128]; ///< scalefactor indices (used by encoder) uint8_t zeroes[128]; ///< band is not coded (used by encoder) DECLARE_ALIGNED(32, float, coeffs)[1024]; ///< coefficients for IMDCT - DECLARE_ALIGNED(32, float, saved)[1024]; ///< overlap + DECLARE_ALIGNED(32, float, saved)[1536]; ///< overlap DECLARE_ALIGNED(32, float, ret_buf)[2048]; ///< PCM output buffer DECLARE_ALIGNED(16, float, ltp_state)[3072]; ///< time signal for LTP PredictorState predictor_state[MAX_PREDICTORS]; |