comparison ac3dec.h @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 38ab367d4231
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
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 ///@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 160 DECLARE_ALIGNED_16(int, fixed_coeffs)[AC3_MAX_CHANNELS][AC3_MAX_COEFS]; ///> fixed-point transform coefficients
161 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
162 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
163 DECLARE_ALIGNED_16(float, window[AC3_BLOCK_SIZE]); ///< window coefficients 163 DECLARE_ALIGNED_16(float, window)[AC3_BLOCK_SIZE]; ///< window coefficients
164 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
165 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
166 ///@} 166 ///@}
167 } AC3DecodeContext; 167 } AC3DecodeContext;
168 168
169 /** 169 /**
170 * Parse the E-AC-3 frame header. 170 * Parse the E-AC-3 frame header.