comparison cook.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 4dac6529ee0c
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
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];