comparison mpegaudiodec.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 1cd8731bbe7f
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
93 SCALE_GEN(4.0 / 3.0), /* 3 steps */ 93 SCALE_GEN(4.0 / 3.0), /* 3 steps */
94 SCALE_GEN(4.0 / 5.0), /* 5 steps */ 94 SCALE_GEN(4.0 / 5.0), /* 5 steps */
95 SCALE_GEN(4.0 / 9.0), /* 9 steps */ 95 SCALE_GEN(4.0 / 9.0), /* 9 steps */
96 }; 96 };
97 97
98 DECLARE_ALIGNED_16(MPA_INT, ff_mpa_synth_window)[512]; 98 DECLARE_ALIGNED(16, MPA_INT, ff_mpa_synth_window)[512];
99 99
100 /** 100 /**
101 * Convert region offsets to region sizes and truncate 101 * Convert region offsets to region sizes and truncate
102 * size to big_values. 102 * size to big_values.
103 */ 103 */