Mercurial > libavcodec.hg
diff 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 |
line wrap: on
line diff
--- a/mjpegdec.h Fri Jan 22 01:59:17 2010 +0000 +++ b/mjpegdec.h Fri Jan 22 03:25:11 2010 +0000 @@ -84,7 +84,7 @@ int got_picture; ///< we found a SOF and picture is valid, too. int linesize[MAX_COMPONENTS]; ///< linesize << interlaced int8_t *qscale_table; - DECLARE_ALIGNED_16(DCTELEM, block[64]); + DECLARE_ALIGNED_16(DCTELEM, block)[64]; DCTELEM (*blocks[MAX_COMPONENTS])[64]; ///< intermediate sums (progressive mode) uint8_t *last_nnz[MAX_COMPONENTS]; uint64_t coefs_finished[MAX_COMPONENTS]; ///< bitmask of which coefs have been completely decoded (progressive mode)
