diff options
author | Justin Ruggles <justin.ruggles@gmail.com> | 2011-05-15 11:07:29 -0400 |
---|---|---|
committer | Justin Ruggles <justin.ruggles@gmail.com> | 2011-05-15 17:42:05 -0400 |
commit | 033a4a942a81a1880ca5a89e7eb3a2b5f529a7fb (patch) | |
tree | 56cfc896c783f5accb0d872130a8ee966648f487 /libavcodec/aac.h | |
parent | 7f995abed362be3ae54c6f0464cf00b2c89b7678 (diff) | |
download | ffmpeg-033a4a942a81a1880ca5a89e7eb3a2b5f529a7fb.tar.gz |
aacdec: Use float instead of int16_t for ltp_state to avoid needless rounding.
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 ecb8191566..76b6a7821b 100644 --- a/libavcodec/aac.h +++ b/libavcodec/aac.h @@ -227,7 +227,7 @@ typedef struct { DECLARE_ALIGNED(32, float, coeffs)[1024]; ///< coefficients for IMDCT DECLARE_ALIGNED(32, float, saved)[1024]; ///< overlap DECLARE_ALIGNED(32, float, ret)[2048]; ///< PCM output - DECLARE_ALIGNED(16, int16_t, ltp_state)[3072]; ///< time signal for LTP + DECLARE_ALIGNED(16, float, ltp_state)[3072]; ///< time signal for LTP PredictorState predictor_state[MAX_PREDICTORS]; } SingleChannelElement; |