Justin Ruggles <[email protected]> writes: > --- > libavcodec/imc.c | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/libavcodec/imc.c b/libavcodec/imc.c > index 07d6cad..5c5db37 100644 > --- a/libavcodec/imc.c > +++ b/libavcodec/imc.c > @@ -655,14 +655,14 @@ static int imc_decode_frame(AVCodecContext * avctx, > int flag; > int bits, summer; > int counter, bitscount; > - uint16_t buf16[IMC_BLOCK_SIZE / 2]; > + LOCAL_ALIGNED_16(uint16_t, buf16)[IMC_BLOCK_SIZE / 2];
Wrong. LOCAL_ALIGNED() and DECLARE_ALIGNED() have different syntax, and it has to be that way. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
