From 2790d7a9ffbd51f33e5367a31ace5c44c30401a1 Mon Sep 17 00:00:00 2001 From: Young Han Lee Date: Fri, 18 Feb 2011 09:33:11 +0900 Subject: aacenc: remove the data arrays Signed-off-by: Ronald S. Bultje --- libavcodec/aacenc.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'libavcodec/aacenc.h') diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index 86c68d3e16..3559234ff1 100644 --- a/libavcodec/aacenc.h +++ b/libavcodec/aacenc.h @@ -52,8 +52,7 @@ typedef struct AACEncContext { FFTContext mdct1024; ///< long (1024 samples) frame transform context FFTContext mdct128; ///< short (128 samples) frame transform context DSPContext dsp; - DECLARE_ALIGNED(16, FFTSample, output)[2048]; ///< temporary buffer for MDCT input coefficients - int16_t* samples; ///< saved preprocessed input + int16_t *samples; ///< saved preprocessed input int samplerate_index; ///< MPEG-4 samplerate index @@ -64,8 +63,8 @@ typedef struct AACEncContext { int cur_channel; int last_frame; float lambda; + float *scoefs; ///< scaled coefficients DECLARE_ALIGNED(16, int, qcoefs)[96]; ///< quantized coefficients - DECLARE_ALIGNED(16, float, scoefs)[1024]; ///< scaled coefficients } AACEncContext; #endif /* AVCODEC_AACENC_H */ -- cgit v1.2.3