Commit 4d34205b authored by Ramiro Polla's avatar Ramiro Polla Committed by James Almer

avcodec/4xm: fix block alignment

blockdsp requires 32 byte alignment.
Signed-off-by: 's avatarJames Almer <jamrial@gmail.com>
parent cef857da
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment