comparison cook.c @ 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
148 float gain_table[23]; 148 float gain_table[23];
149 149
150 /* data buffers */ 150 /* data buffers */
151 151
152 uint8_t* decoded_bytes_buffer; 152 uint8_t* decoded_bytes_buffer;
153 DECLARE_ALIGNED_16(float,mono_mdct_output)[2048]; 153 DECLARE_ALIGNED(16, float,mono_mdct_output)[2048];
154 float decode_buffer_1[1024]; 154 float decode_buffer_1[1024];
155 float decode_buffer_2[1024]; 155 float decode_buffer_2[1024];
156 float decode_buffer_0[1060]; /* static allocation for joint decode */ 156 float decode_buffer_0[1060]; /* static allocation for joint decode */
157 157
158 const float *cplscales[5]; 158 const float *cplscales[5];