comparison mjpegdec.h @ 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 7dd2a45249a9
comparison
equal deleted inserted replaced
11368:3d4f64b8fb10 11369:98970e51365a
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;