You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avcodec/4xm: fix block alignment
blockdsp requires 32 byte alignment. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
committed by
James Almer
parent
cef857da48
commit
4d34205bec
@@ -145,7 +145,7 @@ typedef struct FourXContext {
|
|||||||
int mv[256];
|
int mv[256];
|
||||||
VLC pre_vlc;
|
VLC pre_vlc;
|
||||||
int last_dc;
|
int last_dc;
|
||||||
DECLARE_ALIGNED(16, int16_t, block)[6][64];
|
DECLARE_ALIGNED(32, int16_t, block)[6][64];
|
||||||
void *bitstream_buffer;
|
void *bitstream_buffer;
|
||||||
unsigned int bitstream_buffer_size;
|
unsigned int bitstream_buffer_size;
|
||||||
int version;
|
int version;
|
||||||
|
Reference in New Issue
Block a user