[FFmpeg-cvslog] r21573 - trunk/libavcodec/binkaudio.c
daniel
subversion
Sun Jan 31 16:07:26 CET 2010
Author: daniel
Date: Sun Jan 31 16:07:25 2010
New Revision: 21573
Log:
Update binkaudio to new DECLARE_ALIGNED syntax
Modified:
trunk/libavcodec/binkaudio.c
Modified: trunk/libavcodec/binkaudio.c
==============================================================================
--- trunk/libavcodec/binkaudio.c Sun Jan 31 14:34:28 2010 (r21572)
+++ trunk/libavcodec/binkaudio.c Sun Jan 31 16:07:25 2010 (r21573)
@@ -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;
More information about the ffmpeg-cvslog
mailing list