comparison mjpeg.c @ 2367:c353719836af libavcodec

fix some type mismatches patch by (Jeff Muizelaar <muizelaar rogers com>)
author michael
date Thu, 25 Nov 2004 19:17:27 +0000
parents 0fcb4d572719
children 26560d4fdb1f
comparison
equal deleted inserted replaced
2366:270666128b07 2367:c353719836af
825 int h_max, v_max; /* maximum h and v counts */ 825 int h_max, v_max; /* maximum h and v counts */
826 int quant_index[4]; /* quant table index for each component */ 826 int quant_index[4]; /* quant table index for each component */
827 int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */ 827 int last_dc[MAX_COMPONENTS]; /* last DEQUANTIZED dc (XXX: am I right to do that ?) */
828 AVFrame picture; /* picture structure */ 828 AVFrame picture; /* picture structure */
829 int linesize[MAX_COMPONENTS]; ///< linesize << interlaced 829 int linesize[MAX_COMPONENTS]; ///< linesize << interlaced
830 uint8_t *qscale_table; 830 int8_t *qscale_table;
831 DCTELEM block[64] __align8; 831 DCTELEM block[64] __align8;
832 ScanTable scantable; 832 ScanTable scantable;
833 void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/); 833 void (*idct_put)(uint8_t *dest/*align 8*/, int line_size, DCTELEM *block/*align 16*/);
834 834
835 int restart_interval; 835 int restart_interval;