comparison asv1.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 34a65026fa06
children 8a4984c5cacc
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
46 int inv_qscale; 46 int inv_qscale;
47 int mb_width; 47 int mb_width;
48 int mb_height; 48 int mb_height;
49 int mb_width2; 49 int mb_width2;
50 int mb_height2; 50 int mb_height2;
51 DECLARE_ALIGNED_16(DCTELEM, block)[6][64]; 51 DECLARE_ALIGNED(16, DCTELEM, block)[6][64];
52 uint16_t intra_matrix[64]; 52 uint16_t intra_matrix[64];
53 int q_intra_matrix[64]; 53 int q_intra_matrix[64];
54 uint8_t *bitstream_buffer; 54 uint8_t *bitstream_buffer;
55 unsigned int bitstream_buffer_size; 55 unsigned int bitstream_buffer_size;
56 } ASV1Context; 56 } ASV1Context;