From 803d8488f27a9695cd9329c66b16a184392cfdc4 Mon Sep 17 00:00:00 2001 From: Benjamin Larsson Date: Sat, 19 Sep 2009 01:46:03 +0000 Subject: [PATCH] Align sample output buffer in atrac1. Originally committed as revision 19918 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/atrac1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;