comparison asv1.c @ 10093:beb616cf1885 libavcodec

Remove some unnecessary alignment specifiers None of these arrays are used in ways requiring extra alignment.
author mru
date Wed, 26 Aug 2009 12:12:40 +0000
parents 0dce4fe6e6f3
children 38cfe222e1a4
comparison
equal deleted inserted replaced
10092:e85fbfe709d8 10093:beb616cf1885
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 DECLARE_ALIGNED_8(uint16_t, intra_matrix[64]); 52 uint16_t intra_matrix[64];
53 DECLARE_ALIGNED_8(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;
57 57
58 static const uint8_t scantab[64]={ 58 static const uint8_t scantab[64]={