diff atrac1.c @ 10190:1b1ac77dee05 libavcodec

Align sample output buffer in atrac1.
author banan
date Sat, 19 Sep 2009 01:46:03 +0000
parents de34f74fb758
children 024dff84e511
line wrap: on
line diff
--- a/atrac1.c	Sat Sep 19 01:45:00 2009 +0000
+++ b/atrac1.c	Sat Sep 19 01:46:03 2009 +0000
@@ -78,7 +78,7 @@
     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;