Align sample output buffer in atrac1.

Originally committed as revision 19918 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Benjamin Larsson 2009-09-19 01:46:03 +00:00
parent 0105f49792
commit 803d8488f2

View File

@ -78,7 +78,7 @@ typedef struct {
DECLARE_ALIGNED_16(float, mid[256]); DECLARE_ALIGNED_16(float, mid[256]);
DECLARE_ALIGNED_16(float,high[512]); DECLARE_ALIGNED_16(float,high[512]);
float* bands[3]; float* bands[3];
float out_samples[AT1_MAX_CHANNELS][AT1_SU_SAMPLES]; DECLARE_ALIGNED_16(float,out_samples[AT1_MAX_CHANNELS][AT1_SU_SAMPLES]);
MDCTContext mdct_ctx[3]; MDCTContext mdct_ctx[3];
int channels; int channels;
DSPContext dsp; DSPContext dsp;