1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

align array used in mdct. fixes segfault.

Originally committed as revision 9848 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Justin Ruggles 2007-08-01 01:13:58 +00:00
parent 873525491e
commit dfd57c366f

View File

@ -686,7 +686,7 @@ static void do_rematrixing(AC3DecodeContext *ctx)
static void do_imdct_256(AC3DecodeContext *ctx, int chindex)
{
int i, k;
float x[128];
DECLARE_ALIGNED_16(float, x[128]);
FFTComplex z[2][64];
float *o_ptr = ctx->tmp_output;