Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRostislav Pehlivanov <atomnuker@gmail.com>2015-08-29 08:44:20 +0300
committerRostislav Pehlivanov <atomnuker@gmail.com>2015-08-29 08:44:20 +0300
commit1cd5daee20602e1fa271bd38b3aa47c9bc30ac67 (patch)
treeaf9e8a16697d723bd44931eff8d2e29a08a36938 /libavcodec/aac.h
parent44ddee945a2e8cfc1b7074de6e35595ed41da4e4 (diff)
aac: remove now-unused redundant array
This commit removes the array which was made redundant with the last commit. The current prediction system gets the quantization error directly (and without the single-frame delay) in the search_for_pred function. Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r--libavcodec/aac.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index aa4b53b549..17af49c766 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -259,7 +259,6 @@ typedef struct SingleChannelElement {
DECLARE_ALIGNED(32, INTFLOAT, saved)[1536]; ///< overlap
DECLARE_ALIGNED(32, INTFLOAT, ret_buf)[2048]; ///< PCM output buffer
DECLARE_ALIGNED(16, INTFLOAT, ltp_state)[3072]; ///< time signal for LTP
- DECLARE_ALIGNED(32, AAC_FLOAT, pqcoeffs)[1024]; ///< quantization error of coefs (used by encoder)
DECLARE_ALIGNED(32, AAC_FLOAT, prcoeffs)[1024]; ///< Main prediction coefs (used by encoder)
PredictorState predictor_state[MAX_PREDICTORS];
INTFLOAT *ret; ///< PCM output