summaryrefslogtreecommitdiff
path: root/libavcodec/4xm.c
diff options
context:
space:
mode:
authorRamiro Polla <ramiro.polla@gmail.com>2018-12-26 13:54:30 -0300
committerJames Almer <jamrial@gmail.com>2018-12-26 13:56:20 -0300
commit4d34205bec706aa25cb7f355786f97a72c7632b5 (patch)
treee73310395bd5e09b77746b4cf9e08ddb20374956 /libavcodec/4xm.c
parentcef857da481e14393a3ed4ab5663fe0d48d7fe24 (diff)
downloadffmpeg-4d34205bec706aa25cb7f355786f97a72c7632b5.tar.gz
avcodec/4xm: fix block alignment
blockdsp requires 32 byte alignment. Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavcodec/4xm.c')
-rw-r--r--libavcodec/4xm.c2
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;