diff options
author | Ramiro Polla <ramiro.polla@gmail.com> | 2018-12-26 13:54:30 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2018-12-26 13:56:20 -0300 |
commit | 4d34205bec706aa25cb7f355786f97a72c7632b5 (patch) | |
tree | e73310395bd5e09b77746b4cf9e08ddb20374956 | |
parent | cef857da481e14393a3ed4ab5663fe0d48d7fe24 (diff) | |
download | ffmpeg-4d34205bec706aa25cb7f355786f97a72c7632b5.tar.gz |
avcodec/4xm: fix block alignment
blockdsp requires 32 byte alignment.
Signed-off-by: James Almer <jamrial@gmail.com>
-rw-r--r-- | libavcodec/4xm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |