comparison mdec.c @ 11369:98970e51365a libavcodec

Remove DECLARE_ALIGNED_{8,16} macros These macros are redundant. All uses are replaced with the generic DECLARE_ALIGNED macro instead.
author mru
date Sat, 06 Mar 2010 14:24:59 +0000
parents 8754b8361dc9
children 8a4984c5cacc
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
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