comparison mdec.c @ 10086:3a2f437d2fea libavcodec

mdec: remove unused members from struct MDECContext
author mru
date Tue, 25 Aug 2009 23:28:33 +0000
parents 141badec76fc
children 34a65026fa06
comparison
equal deleted inserted replaced
10085:06ff9b175488 10086:3a2f437d2fea
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 DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]);
49 DECLARE_ALIGNED_8(int, q_intra_matrix[64]);
50 uint8_t *bitstream_buffer; 48 uint8_t *bitstream_buffer;
51 unsigned int bitstream_buffer_size; 49 unsigned int bitstream_buffer_size;
52 int block_last_index[6]; 50 int block_last_index[6];
53 } MDECContext; 51 } MDECContext;
54 52