comparison aac.h @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 34a65026fa06
children 4b3da727d832
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
212 enum BandType band_type[128]; ///< band types 212 enum BandType band_type[128]; ///< band types
213 int band_type_run_end[120]; ///< band type run end points 213 int band_type_run_end[120]; ///< band type run end points
214 float sf[120]; ///< scalefactors 214 float sf[120]; ///< scalefactors
215 int sf_idx[128]; ///< scalefactor indices (used by encoder) 215 int sf_idx[128]; ///< scalefactor indices (used by encoder)
216 uint8_t zeroes[128]; ///< band is not coded (used by encoder) 216 uint8_t zeroes[128]; ///< band is not coded (used by encoder)
217 DECLARE_ALIGNED_16(float, coeffs)[1024]; ///< coefficients for IMDCT 217 DECLARE_ALIGNED(16, float, coeffs)[1024]; ///< coefficients for IMDCT
218 DECLARE_ALIGNED_16(float, saved)[1024]; ///< overlap 218 DECLARE_ALIGNED(16, float, saved)[1024]; ///< overlap
219 DECLARE_ALIGNED_16(float, ret)[1024]; ///< PCM output 219 DECLARE_ALIGNED(16, float, ret)[1024]; ///< PCM output
220 PredictorState predictor_state[MAX_PREDICTORS]; 220 PredictorState predictor_state[MAX_PREDICTORS];
221 } SingleChannelElement; 221 } SingleChannelElement;
222 222
223 /** 223 /**
224 * channel element - generic struct for SCE/CPE/CCE/LFE 224 * channel element - generic struct for SCE/CPE/CCE/LFE
259 259
260 /** 260 /**
261 * @defgroup temporary aligned temporary buffers (We do not want to have these on the stack.) 261 * @defgroup temporary aligned temporary buffers (We do not want to have these on the stack.)
262 * @{ 262 * @{
263 */ 263 */
264 DECLARE_ALIGNED_16(float, buf_mdct)[1024]; 264 DECLARE_ALIGNED(16, float, buf_mdct)[1024];
265 /** @} */ 265 /** @} */
266 266
267 /** 267 /**
268 * @defgroup tables Computed / set up during initialization. 268 * @defgroup tables Computed / set up during initialization.
269 * @{ 269 * @{