comparison wmv2.c @ 3089:072dbc669253 libavcodec

MSVC-compatible __align8/__align16 declaration patch by Steve Lhomme, steve .dot. lhomme .at. free .dot. fr
author diego
date Sun, 05 Feb 2006 13:35:17 +0000
parents 0b546eab515d
children de0ed6497a13
comparison
equal deleted inserted replaced
3088:03582724f3de 3089:072dbc669253
47 int per_mb_rl_bit; 47 int per_mb_rl_bit;
48 int skip_type; 48 int skip_type;
49 int hshift; 49 int hshift;
50 50
51 ScanTable abt_scantable[2]; 51 ScanTable abt_scantable[2];
52 DCTELEM abt_block2[6][64] __align8; 52 DECLARE_ALIGNED_8(DCTELEM, abt_block2[6][64]);
53 }Wmv2Context; 53 }Wmv2Context;
54 54
55 static void wmv2_common_init(Wmv2Context * w){ 55 static void wmv2_common_init(Wmv2Context * w){
56 MpegEncContext * const s= &w->s; 56 MpegEncContext * const s= &w->s;
57 57