From 4d34205bec706aa25cb7f355786f97a72c7632b5 Mon Sep 17 00:00:00 2001 From: Ramiro Polla Date: Wed, 26 Dec 2018 13:54:30 -0300 Subject: [PATCH] avcodec/4xm: fix block alignment blockdsp requires 32 byte alignment. Signed-off-by: James Almer --- libavcodec/4xm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/4xm.c b/libavcodec/4xm.c index 5547dfd87f..7440dccf1f 100644 --- a/libavcodec/4xm.c +++ b/libavcodec/4xm.c @@ -145,7 +145,7 @@ typedef struct FourXContext { int mv[256]; VLC pre_vlc; int last_dc; - DECLARE_ALIGNED(16, int16_t, block)[6][64]; + DECLARE_ALIGNED(32, int16_t, block)[6][64]; void *bitstream_buffer; unsigned int bitstream_buffer_size; int version;