comparison ac3dec.h @ 10027:652e08aa95fd libavcodec

cosmetics: move fixed_coeffs into the aligned arrays comment group
author jbr
date Wed, 05 Aug 2009 02:37:49 +0000
parents e60ed9255bf4
children 38ab367d4231
comparison
equal deleted inserted replaced
10026:e73210411a21 10027:652e08aa95fd
154 DSPContext dsp; ///< for optimization 154 DSPContext dsp; ///< for optimization
155 float add_bias; ///< offset for float_to_int16 conversion 155 float add_bias; ///< offset for float_to_int16 conversion
156 float mul_bias; ///< scaling for float_to_int16 conversion 156 float mul_bias; ///< scaling for float_to_int16 conversion
157 ///@} 157 ///@}
158 158
159 DECLARE_ALIGNED_16(int, fixed_coeffs[AC3_MAX_CHANNELS][AC3_MAX_COEFS]); ///> fixed-point transform coefficients
160
161 ///@defgroup arrays aligned arrays 159 ///@defgroup arrays aligned arrays
160 DECLARE_ALIGNED_16(int, fixed_coeffs[AC3_MAX_CHANNELS][AC3_MAX_COEFS]); ///> fixed-point transform coefficients
162 DECLARE_ALIGNED_16(float, transform_coeffs[AC3_MAX_CHANNELS][AC3_MAX_COEFS]); ///< transform coefficients 161 DECLARE_ALIGNED_16(float, transform_coeffs[AC3_MAX_CHANNELS][AC3_MAX_COEFS]); ///< transform coefficients
163 DECLARE_ALIGNED_16(float, delay[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< delay - added to the next block 162 DECLARE_ALIGNED_16(float, delay[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< delay - added to the next block
164 DECLARE_ALIGNED_16(float, window[AC3_BLOCK_SIZE]); ///< window coefficients 163 DECLARE_ALIGNED_16(float, window[AC3_BLOCK_SIZE]); ///< window coefficients
165 DECLARE_ALIGNED_16(float, tmp_output[AC3_BLOCK_SIZE]); ///< temporary storage for output before windowing 164 DECLARE_ALIGNED_16(float, tmp_output[AC3_BLOCK_SIZE]); ///< temporary storage for output before windowing
166 DECLARE_ALIGNED_16(float, output[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< output after imdct transform and windowing 165 DECLARE_ALIGNED_16(float, output[AC3_MAX_CHANNELS][AC3_BLOCK_SIZE]); ///< output after imdct transform and windowing