comparison eatqi.c @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 3dcbde0de577
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
38 typedef struct TqiContext { 38 typedef struct TqiContext {
39 MpegEncContext s; 39 MpegEncContext s;
40 AVFrame frame; 40 AVFrame frame;
41 void *bitstream_buf; 41 void *bitstream_buf;
42 unsigned int bitstream_buf_size; 42 unsigned int bitstream_buf_size;
43 DECLARE_ALIGNED_16(DCTELEM, block[6][64]); 43 DECLARE_ALIGNED_16(DCTELEM, block)[6][64];
44 } TqiContext; 44 } TqiContext;
45 45
46 static av_cold int tqi_decode_init(AVCodecContext *avctx) 46 static av_cold int tqi_decode_init(AVCodecContext *avctx)
47 { 47 {
48 TqiContext *t = avctx->priv_data; 48 TqiContext *t = avctx->priv_data;