On Mon, Jan 30, 2012 at 02:33:00PM -0500, Justin Ruggles wrote: > DSPContext.bswap_buf() requires aligned output > --- > This probably fixes the FATE failures for x86_32-netbsd-gcc. > > libavcodec/mpc7.c | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/libavcodec/mpc7.c b/libavcodec/mpc7.c > index 290ecfb..8bc0853 100644 > --- a/libavcodec/mpc7.c > +++ b/libavcodec/mpc7.c > @@ -53,7 +53,7 @@ static av_cold int mpc7_decode_init(AVCodecContext * avctx) > int i, j; > MPCContext *c = avctx->priv_data; > GetBitContext gb; > - uint8_t buf[16]; > + LOCAL_ALIGNED_16(uint8_t, buf, [16]); > static int vlc_initialized = 0; > > static VLC_TYPE scfi_table[1 << MPC7_SCFI_BITS][2]; > --
looks fine _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
