[FFmpeg-cvslog] r19918 - trunk/libavcodec/atrac1.c
banan
subversion
Sat Sep 19 03:46:03 CEST 2009
Author: banan
Date: Sat Sep 19 03:46:03 2009
New Revision: 19918
Log:
Align sample output buffer in atrac1.
Modified:
trunk/libavcodec/atrac1.c
Modified: trunk/libavcodec/atrac1.c
==============================================================================
--- trunk/libavcodec/atrac1.c Sat Sep 19 03:45:00 2009 (r19917)
+++ trunk/libavcodec/atrac1.c Sat Sep 19 03:46:03 2009 (r19918)
@@ -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;
More information about the ffmpeg-cvslog
mailing list