Mercurial > libavcodec.hg
diff atrac3.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 |
line wrap: on
line diff
--- a/atrac3.c Sat Mar 06 12:40:43 2010 +0000 +++ b/atrac3.c Sat Mar 06 14:24:59 2010 +0000 @@ -73,8 +73,8 @@ int gcBlkSwitch; gain_block gainBlock[2]; - DECLARE_ALIGNED_16(float, spectrum)[1024]; - DECLARE_ALIGNED_16(float, IMDCT_buf)[1024]; + DECLARE_ALIGNED(16, float, spectrum)[1024]; + DECLARE_ALIGNED(16, float, IMDCT_buf)[1024]; float delayBuf1[46]; ///<qmf delay buffers float delayBuf2[46]; @@ -119,7 +119,7 @@ //@} } ATRAC3Context; -static DECLARE_ALIGNED_16(float,mdct_window)[512]; +static DECLARE_ALIGNED(16, float,mdct_window)[512]; static VLC spectral_coeff_tab[7]; static float gain_tab1[16]; static float gain_tab2[31];
