summaryrefslogtreecommitdiff
path: root/libavcodec/atrac1.c
diff options
context:
space:
mode:
authorBenjamin Larsson <banan@ludd.ltu.se>2009-09-19 01:46:03 +0000
committerBenjamin Larsson <banan@ludd.ltu.se>2009-09-19 01:46:03 +0000
commit803d8488f27a9695cd9329c66b16a184392cfdc4 (patch)
tree386680b65e1f5fabf8d524355bdb13dce4fb8c9f /libavcodec/atrac1.c
parent0105f49792f675ecdca76b59979a70e1e21872dd (diff)
Align sample output buffer in atrac1.
Originally committed as revision 19918 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/atrac1.c')
-rw-r--r--libavcodec/atrac1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/atrac1.c b/libavcodec/atrac1.c
index 17f90b164d..5e971489f4 100644
--- a/libavcodec/atrac1.c
+++ b/libavcodec/atrac1.c
@@ -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;