# HG changeset patch # User stefang # Date 1235810313 0 # Node ID 24d0633a5248e74632dc9fc78f40ea672d987fa8 # Parent 87f496299f0951b7f5e8583156de39a10a76dd93 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 diff -r 87f496299f09 -r 24d0633a5248 h264.h --- a/h264.h Sat Feb 28 07:31:36 2009 +0000 +++ b/h264.h Sat Feb 28 08:38:33 2009 +0000 @@ -350,7 +350,7 @@ 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;