Commit ff873d95 authored by stefang's avatar stefang

sub_mb_type[] needs to be 8-byte aligned because it is referenced

as a uint64_t in get_dct8x8_allowed().
Patch by David S. Miller <davem at davemloft dot net>


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@17655 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0e605fb5
......@@ -350,7 +350,7 @@ typedef struct H264Context{
int mb_field_decoding_flag;
int mb_mbaff; ///< mb_aff_frame && mb_field_decoding_flag
uint16_t sub_mb_type[4];
DECLARE_ALIGNED_8(uint16_t, sub_mb_type[4]);
//POC stuff
int poc_lsb;
......
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