Align sample output buffer in atrac1.
authorBenjamin Larsson <banan@ludd.ltu.se>
Sat, 19 Sep 2009 01:46:03 +0000 (01:46 +0000)
committerBenjamin Larsson <banan@ludd.ltu.se>
Sat, 19 Sep 2009 01:46:03 +0000 (01:46 +0000)
Originally committed as revision 19918 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/atrac1.c

index 17f90b1..5e97148 100644 (file)
@@ -78,7 +78,7 @@ typedef struct {
     DECLARE_ALIGNED_16(float, mid[256]);
     DECLARE_ALIGNED_16(float,high[512]);
     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];
     int                 channels;
     DSPContext          dsp;