comparison 4xm.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
135 const uint8_t *bytestream; 135 const uint8_t *bytestream;
136 const uint16_t *wordstream; 136 const uint16_t *wordstream;
137 int mv[256]; 137 int mv[256];
138 VLC pre_vlc; 138 VLC pre_vlc;
139 int last_dc; 139 int last_dc;
140 DECLARE_ALIGNED_16(DCTELEM, block)[6][64]; 140 DECLARE_ALIGNED(16, DCTELEM, block)[6][64];
141 void *bitstream_buffer; 141 void *bitstream_buffer;
142 unsigned int bitstream_buffer_size; 142 unsigned int bitstream_buffer_size;
143 int version; 143 int version;
144 CFrameBuffer cfrm[CFRAME_BUFFER_COUNT]; 144 CFrameBuffer cfrm[CFRAME_BUFFER_COUNT];
145 } FourXContext; 145 } FourXContext;