comparison mdec.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 3a2f437d2fea
children a7a2892e24de
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
42 int qscale; 42 int qscale;
43 int last_dc[3]; 43 int last_dc[3];
44 int mb_width; 44 int mb_width;
45 int mb_height; 45 int mb_height;
46 int mb_x, mb_y; 46 int mb_x, mb_y;
47 DECLARE_ALIGNED_16(DCTELEM, block[6][64]); 47 DECLARE_ALIGNED_16(DCTELEM, block)[6][64];
48 uint8_t *bitstream_buffer; 48 uint8_t *bitstream_buffer;
49 unsigned int bitstream_buffer_size; 49 unsigned int bitstream_buffer_size;
50 int block_last_index[6]; 50 int block_last_index[6];
51 } MDECContext; 51 } MDECContext;
52 52