comparison mpegaudio.h @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents ead8d96926c4
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
130 int last_buf_size; 130 int last_buf_size;
131 /* next header (used in free format parsing) */ 131 /* next header (used in free format parsing) */
132 uint32_t free_format_next_header; 132 uint32_t free_format_next_header;
133 GetBitContext gb; 133 GetBitContext gb;
134 GetBitContext in_gb; 134 GetBitContext in_gb;
135 DECLARE_ALIGNED_16(MPA_INT, synth_buf[MPA_MAX_CHANNELS][512 * 2]); 135 DECLARE_ALIGNED_16(MPA_INT, synth_buf)[MPA_MAX_CHANNELS][512 * 2];
136 int synth_buf_offset[MPA_MAX_CHANNELS]; 136 int synth_buf_offset[MPA_MAX_CHANNELS];
137 DECLARE_ALIGNED_16(int32_t, sb_samples[MPA_MAX_CHANNELS][36][SBLIMIT]); 137 DECLARE_ALIGNED_16(int32_t, sb_samples)[MPA_MAX_CHANNELS][36][SBLIMIT];
138 int32_t mdct_buf[MPA_MAX_CHANNELS][SBLIMIT * 18]; /* previous samples, for layer 3 MDCT */ 138 int32_t mdct_buf[MPA_MAX_CHANNELS][SBLIMIT * 18]; /* previous samples, for layer 3 MDCT */
139 GranuleDef granules[2][2]; /* Used in Layer 3 */ 139 GranuleDef granules[2][2]; /* Used in Layer 3 */
140 #ifdef DEBUG 140 #ifdef DEBUG
141 int frame_count; 141 int frame_count;
142 #endif 142 #endif