Commit 1b48eb3d authored by daniel's avatar daniel

Update binkaudio to new DECLARE_ALIGNED syntax



git-svn-id: file:///var/local/repositories/ffmpeg/trunk@21573 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 85b61a96
...@@ -49,8 +49,8 @@ typedef struct { ...@@ -49,8 +49,8 @@ typedef struct {
int num_bands; int num_bands;
unsigned int *bands; unsigned int *bands;
float root; float root;
DECLARE_ALIGNED_16(FFTSample, coeffs[BINK_BLOCK_MAX_SIZE]); 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(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 float *coeffs_ptr[MAX_CHANNELS]; ///< pointers to the coeffs arrays for float_to_int16_interleave
union { union {
RDFTContext rdft; RDFTContext rdft;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment