# HG changeset patch # User banan # Date 1192720567 0 # Node ID fd8b5670375097a664bb8dae1f9172cf171cf982 # Parent 4400d47f7c91487b380646c39567a97163c63ffe Unaligned memory access rcrash fix diff -r 4400d47f7c91 -r fd8b56703750 nellymoserdec.c --- a/nellymoserdec.c Thu Oct 18 14:01:20 2007 +0000 +++ b/nellymoserdec.c Thu Oct 18 15:16:07 2007 +0000 @@ -91,7 +91,7 @@ typedef struct NellyMoserDecodeContext { AVCodecContext* avctx; - float float_buf[NELLY_SAMPLES]; + DECLARE_ALIGNED_16(float,float_buf[NELLY_SAMPLES]); float state[64]; AVRandomState random_state; GetBitContext gb;