fix some type mismatches patch by (Jeff Muizelaar <muizelaar rogers com>)

Originally committed as revision 3712 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Jeff Muizelaar
2004-11-25 19:17:27 +00:00
committed by Michael Niedermayer
parent a5ddc19f04
commit 21d7e2ff40
2 changed files with 2 additions and 2 deletions

View File

@@ -827,7 +827,7 @@ typedef struct MJpegDecodeContext {
int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */
AVFrame picture; /* picture structure */
int linesize[MAX_COMPONENTS]; ///< linesize << interlaced
uint8_t *qscale_table;
int8_t *qscale_table;
DCTELEM block[64] __align8;
ScanTable scantable;
void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);