mirror of https://git.ffmpeg.org/ffmpeg.git
avcodec/4xm: fix block alignment
blockdsp requires 32 byte alignment. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
cef857da48
commit
4d34205bec
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue