comparison mpegaudio.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 7dd2a45249a9
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
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