# HG changeset patch # User daniel # Date 1264950445 0 # Node ID 28f00789adcd6d84194a2662300889609505c1ef # Parent 36c469c688288bd17b39ef17f9afd05715317e0f Update binkaudio to new DECLARE_ALIGNED syntax diff -r 36c469c68828 -r 28f00789adcd binkaudio.c --- a/binkaudio.c Sun Jan 31 13:34:28 2010 +0000 +++ b/binkaudio.c Sun Jan 31 15:07:25 2010 +0000 @@ -49,8 +49,8 @@ int num_bands; unsigned int *bands; float root; - DECLARE_ALIGNED_16(FFTSample, coeffs[BINK_BLOCK_MAX_SIZE]); - DECLARE_ALIGNED_16(short, previous[BINK_BLOCK_MAX_SIZE / 16]); ///< coeffs from previous audio block + DECLARE_ALIGNED_16(FFTSample, coeffs)[BINK_BLOCK_MAX_SIZE]; + DECLARE_ALIGNED_16(short, previous)[BINK_BLOCK_MAX_SIZE / 16]; ///< coeffs from previous audio block float *coeffs_ptr[MAX_CHANNELS]; ///< pointers to the coeffs arrays for float_to_int16_interleave union { RDFTContext rdft;