diff options
author | Benjamin Larsson <banan@ludd.ltu.se> | 2009-09-19 01:46:03 +0000 |
---|---|---|
committer | Benjamin Larsson <banan@ludd.ltu.se> | 2009-09-19 01:46:03 +0000 |
commit | 803d8488f27a9695cd9329c66b16a184392cfdc4 (patch) | |
tree | 386680b65e1f5fabf8d524355bdb13dce4fb8c9f /libavcodec | |
parent | 0105f49792f675ecdca76b59979a70e1e21872dd (diff) | |
download | ffmpeg-803d8488f27a9695cd9329c66b16a184392cfdc4.tar.gz |
Align sample output buffer in atrac1.
Originally committed as revision 19918 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/atrac1.c | 2 |
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; |