comparison asv1.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 04b924f8f5a5
children 8e00b10aeb0a
comparison
equal deleted inserted replaced
3088:03582724f3de 3089:072dbc669253
42 int inv_qscale; 42 int inv_qscale;
43 int mb_width; 43 int mb_width;
44 int mb_height; 44 int mb_height;
45 int mb_width2; 45 int mb_width2;
46 int mb_height2; 46 int mb_height2;
47 DCTELEM __align8 block[6][64]; 47 DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
48 uint16_t __align8 intra_matrix[64]; 48 DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]);
49 int __align8 q_intra_matrix[64]; 49 DECLARE_ALIGNED_8(int, q_intra_matrix[64]);
50 uint8_t *bitstream_buffer; 50 uint8_t *bitstream_buffer;
51 unsigned int bitstream_buffer_size; 51 unsigned int bitstream_buffer_size;
52 } ASV1Context; 52 } ASV1Context;
53 53
54 static const uint8_t scantab[64]={ 54 static const uint8_t scantab[64]={