# HG changeset patch # User jbr # Date 1185930838 0 # Node ID fff2e4b07e28c13270b4663d4167e2872716f52c # Parent 4f2e3ef72b324d1868a8a5c23d9afaa1696874ca align array used in mdct. fixes segfault. diff -r 4f2e3ef72b32 -r fff2e4b07e28 ac3dec.c --- a/ac3dec.c Wed Aug 01 01:01:03 2007 +0000 +++ b/ac3dec.c Wed Aug 01 01:13:58 2007 +0000 @@ -686,7 +686,7 @@ 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;