Commit 499c6c91 authored by jbr's avatar jbr

align array used in mdct. fixes segfault.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9848 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 68eb434e
...@@ -686,7 +686,7 @@ static void do_rematrixing(AC3DecodeContext *ctx) ...@@ -686,7 +686,7 @@ static void do_rematrixing(AC3DecodeContext *ctx)
static void do_imdct_256(AC3DecodeContext *ctx, int chindex) static void do_imdct_256(AC3DecodeContext *ctx, int chindex)
{ {
int i, k; int i, k;
float x[128]; DECLARE_ALIGNED_16(float, x[128]);
FFTComplex z[2][64]; FFTComplex z[2][64];
float *o_ptr = ctx->tmp_output; float *o_ptr = ctx->tmp_output;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment