diff options
author | Daniel Verkamp <daniel@drv.nu> | 2010-01-31 15:07:25 +0000 |
---|---|---|
committer | Daniel Verkamp <daniel@drv.nu> | 2010-01-31 15:07:25 +0000 |
commit | abafc87c46ba7c61075d39b658525f3d8f63274d (patch) | |
tree | b92f4c66352a4a6d428a394751a199ee3f336694 /libavcodec | |
parent | 315c8d6c4e95689f477acf521ee15ec74074b828 (diff) | |
download | ffmpeg-abafc87c46ba7c61075d39b658525f3d8f63274d.tar.gz |
Update binkaudio to new DECLARE_ALIGNED syntax
Originally committed as revision 21573 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/binkaudio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/binkaudio.c b/libavcodec/binkaudio.c index 8704af7358..1e71cd8100 100644 --- a/libavcodec/binkaudio.c +++ b/libavcodec/binkaudio.c @@ -49,8 +49,8 @@ typedef struct { 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; |