summaryrefslogtreecommitdiffstats
path: root/include/jpegint.h
blob: e3e5eb86fc761e4d7e747aa041798098a85030c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extern const int jpeg_natural_order[]; /* zigzag coef order to natural order */

/* Entropy decoding */
struct jpeg_entropy_decoder {
  JMETHOD(void, start_pass, (j_decompress_ptr cinfo));
  JMETHOD(boolean, decode_mcu, (j_decompress_ptr cinfo,
				JBLOCKROW *MCU_data));

  /* This is here to share code between baseline and progressive decoders; */
  /* other modules probably should not use it */
  boolean insufficient_data;	/* set TRUE after emitting warning */
};