changeset 11069:28f00789adcd libavcodec

Update binkaudio to new DECLARE_ALIGNED syntax
author daniel
date Sun, 31 Jan 2010 15:07:25 +0000
parents 36c469c68828
children b28afc181754
files binkaudio.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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;