diff options
author | Alex Converse <alex.converse@gmail.com> | 2008-12-21 05:28:14 +0000 |
---|---|---|
committer | Robert Swain <robert.swain@gmail.com> | 2008-12-21 05:28:14 +0000 |
commit | aab5413323e6ed239f99d58d08f438f722a25090 (patch) | |
tree | 02ad9d7fbfa7f60779a2a8e91941a0e73539a3fb /libavcodec/aac.h | |
parent | 99665a21f4cfe0747740b91d4e5768cffa4fe862 (diff) | |
download | ffmpeg-aab5413323e6ed239f99d58d08f438f722a25090.tar.gz |
AAC: Fix AAC prediction when used in conjunction with the CPE
Patch by Alex Converse (alex converse gmail com)
Originally committed as revision 16250 to svn://svn.ffmpeg.org/ffmpeg/trunk
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 dab85b990d..d2f81f2ecb 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -163,7 +163,6 @@ typedef struct { int predictor_initialized; int predictor_reset_group; uint8_t prediction_used[41]; - PredictorState predictor_state[MAX_PREDICTORS]; } IndividualChannelStream; /** @@ -226,6 +225,7 @@ typedef struct { DECLARE_ALIGNED_16(float, coeffs[1024]); ///< coefficients for IMDCT DECLARE_ALIGNED_16(float, saved[512]); ///< overlap DECLARE_ALIGNED_16(float, ret[1024]); ///< PCM output + PredictorState predictor_state[MAX_PREDICTORS]; } SingleChannelElement; /** |