comparison mjpegdec.h @ 10961:34a65026fa06 libavcodec

Move array specifiers outside DECLARE_ALIGNED() invocations
author mru
date Fri, 22 Jan 2010 03:25:11 +0000
parents 3e404d2520a7
children 98970e51365a
comparison
equal deleted inserted replaced
10960:10759fd39860 10961:34a65026fa06
82 int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */ 82 int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */
83 AVFrame picture; /* picture structure */ 83 AVFrame picture; /* picture structure */
84 int got_picture; ///< we found a SOF and picture is valid, too. 84 int got_picture; ///< we found a SOF and picture is valid, too.
85 int linesize[MAX_COMPONENTS]; ///< linesize << interlaced 85 int linesize[MAX_COMPONENTS]; ///< linesize << interlaced
86 int8_t *qscale_table; 86 int8_t *qscale_table;
87 DECLARE_ALIGNED_16(DCTELEM, block[64]); 87 DECLARE_ALIGNED_16(DCTELEM, block)[64];
88 DCTELEM (*blocks[MAX_COMPONENTS])[64]; ///< intermediate sums (progressive mode) 88 DCTELEM (*blocks[MAX_COMPONENTS])[64]; ///< intermediate sums (progressive mode)
89 uint8_t *last_nnz[MAX_COMPONENTS]; 89 uint8_t *last_nnz[MAX_COMPONENTS];
90 uint64_t coefs_finished[MAX_COMPONENTS]; ///< bitmask of which coefs have been completely decoded (progressive mode) 90 uint64_t coefs_finished[MAX_COMPONENTS]; ///< bitmask of which coefs have been completely decoded (progressive mode)
91 ScanTable scantable; 91 ScanTable scantable;
92 DSPContext dsp; 92 DSPContext dsp;