comparison mdec.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 c8c591fe26f8
comparison
equal deleted inserted replaced
3088:03582724f3de 3089:072dbc669253
43 int qscale; 43 int qscale;
44 int last_dc[3]; 44 int last_dc[3];
45 int mb_width; 45 int mb_width;
46 int mb_height; 46 int mb_height;
47 int mb_x, mb_y; 47 int mb_x, mb_y;
48 DCTELEM __align8 block[6][64]; 48 DECLARE_ALIGNED_8(DCTELEM, block[6][64]);
49 uint16_t __align8 intra_matrix[64]; 49 DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]);
50 int __align8 q_intra_matrix[64]; 50 DECLARE_ALIGNED_8(int, q_intra_matrix[64]);
51 uint8_t *bitstream_buffer; 51 uint8_t *bitstream_buffer;
52 unsigned int bitstream_buffer_size; 52 unsigned int bitstream_buffer_size;
53 int block_last_index[6]; 53 int block_last_index[6];
54 } MDECContext; 54 } MDECContext;
55 55