comparison eamad.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 2428d32533f6
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
44 MpegEncContext s; 44 MpegEncContext s;
45 AVFrame frame; 45 AVFrame frame;
46 AVFrame last_frame; 46 AVFrame last_frame;
47 void *bitstream_buf; 47 void *bitstream_buf;
48 unsigned int bitstream_buf_size; 48 unsigned int bitstream_buf_size;
49 DECLARE_ALIGNED_16(DCTELEM, block[64]); 49 DECLARE_ALIGNED_16(DCTELEM, block)[64];
50 } MadContext; 50 } MadContext;
51 51
52 static void bswap16_buf(uint16_t *dst, const uint16_t *src, int count) 52 static void bswap16_buf(uint16_t *dst, const uint16_t *src, int count)
53 { 53 {
54 int i; 54 int i;