Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1088 lines
46 KiB

  1. /*
  2. * jpeglib.h
  3. *
  4. * Copyright (C) 1991-1995, Thomas G. Lane.
  5. * This file is part of the Independent JPEG Group's software.
  6. * For conditions of distribution and use, see the accompanying README file.
  7. *
  8. * This file defines the application interface for the JPEG library.
  9. * Most applications using the library need only include this file,
  10. * and perhaps jerror.h if they want to know the exact error codes.
  11. */
  12. /* "@(#)jpeglib.h 1.5 11:41:08 09/04/96" */
  13. #ifndef JPEGLIB_H
  14. #define JPEGLIB_H
  15. #ifdef WIN32
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19. #endif
  20. /*
  21. * First we include the configuration files that record how this
  22. * installation of the JPEG library is set up. jconfig.h can be
  23. * generated automatically for many systems. jmorecfg.h contains
  24. * manual configuration options that most people need not worry about.
  25. */
  26. #ifndef JCONFIG_INCLUDED /* in case jinclude.h already did */
  27. #include "jconfig.h" /* widely used configuration options */
  28. #endif
  29. #include "jmorecfg.h" /* seldom changed options */
  30. /* Version ID for the JPEG library.
  31. * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60".
  32. */
  33. #define JPEG_LIB_VERSION 60 /* Version 6 */
  34. /* Various constants determining the sizes of things.
  35. * All of these are specified by the JPEG standard, so don't change them
  36. * if you want to be compatible.
  37. */
  38. #define DCTSIZE 8 /* The basic DCT block is 8x8 samples */
  39. #define DCTSIZE2 64 /* DCTSIZE squared; # of elements in a block */
  40. #define NUM_QUANT_TBLS 4 /* Quantization tables are numbered 0..3 */
  41. #define NUM_HUFF_TBLS 4 /* Huffman tables are numbered 0..3 */
  42. #define NUM_ARITH_TBLS 16 /* Arith-coding tables are numbered 0..15 */
  43. #define MAX_COMPS_IN_SCAN 4 /* JPEG limit on # of components in one scan */
  44. #define MAX_SAMP_FACTOR 4 /* JPEG limit on sampling factors */
  45. /* Unfortunately, some vendors didn't strictly adhere to the standard;
  46. * the PostScript DCT filter can emit files with many more than 10 blocks/MCU.
  47. * If you happen to run across such a file, you can up D_MAX_BLOCKS_IN_MCU
  48. * to handle it. We even let you do this from the jconfig.h file. However,
  49. * we strongly discourage changing C_MAX_BLOCKS_IN_MCU.
  50. */
  51. #define C_MAX_BLOCKS_IN_MCU 10 /* compressor's limit on blocks per MCU */
  52. #ifndef D_MAX_BLOCKS_IN_MCU
  53. #define D_MAX_BLOCKS_IN_MCU 10 /* decompressor's limit on blocks per MCU */
  54. #endif
  55. /* This macro is used to declare a "method", that is, a function pointer.
  56. * We want to supply prototype parameters if the compiler can cope.
  57. * Note that the arglist parameter must be parenthesized!
  58. */
  59. #ifdef HAVE_PROTOTYPES
  60. #define JMETHOD(type,methodname,arglist) type (__cdecl *methodname) arglist
  61. #else
  62. #define JMETHOD(type,methodname,arglist) type (__cdecl *methodname) ()
  63. #endif
  64. /* Data structures for images (arrays of samples and of DCT coefficients).
  65. * On 80x86 machines, the image arrays are too big for near pointers,
  66. * but the pointer arrays can fit in near memory.
  67. */
  68. typedef JSAMPLE FAR *JSAMPROW; /* ptr to one image row of pixel samples. */
  69. typedef JSAMPROW *JSAMPARRAY; /* ptr to some rows (a 2-D sample array) */
  70. typedef JSAMPARRAY *JSAMPIMAGE; /* a 3-D sample array: top index is color */
  71. typedef JCOEF JBLOCK[DCTSIZE2]; /* one block of coefficients */
  72. typedef JBLOCK FAR *JBLOCKROW; /* pointer to one row of coefficient blocks */
  73. typedef JBLOCKROW *JBLOCKARRAY; /* a 2-D array of coefficient blocks */
  74. typedef JBLOCKARRAY *JBLOCKIMAGE; /* a 3-D array of coefficient blocks */
  75. typedef JCOEF FAR *JCOEFPTR; /* useful in a couple of places */
  76. /* Types for JPEG compression parameters and working tables. */
  77. /* DCT coefficient quantization tables. */
  78. typedef struct {
  79. /* This field directly represents the contents of a JPEG DQT marker.
  80. * Note: the values are always given in zigzag order.
  81. */
  82. UINT16 quantval[DCTSIZE2]; /* quantization step for each coefficient */
  83. /* This field is used only during compression. It's initialized FALSE when
  84. * the table is created, and set TRUE when it's been output to the file.
  85. * You could suppress output of a table by setting this to TRUE.
  86. * (See jpeg_suppress_tables for an example.)
  87. */
  88. boolean sent_table; /* TRUE when table has been output */
  89. } JQUANT_TBL;
  90. /* Huffman coding tables. */
  91. typedef struct {
  92. /* These two fields directly represent the contents of a JPEG DHT marker */
  93. UINT8 bits[17]; /* bits[k] = # of symbols with codes of */
  94. /* length k bits; bits[0] is unused */
  95. UINT8 huffval[256]; /* The symbols, in order of incr code length */
  96. /* This field is used only during compression. It's initialized FALSE when
  97. * the table is created, and set TRUE when it's been output to the file.
  98. * You could suppress output of a table by setting this to TRUE.
  99. * (See jpeg_suppress_tables for an example.)
  100. */
  101. boolean sent_table; /* TRUE when table has been output */
  102. } JHUFF_TBL;
  103. /* Basic info about one component (color channel). */
  104. typedef struct {
  105. /* These values are fixed over the whole image. */
  106. /* For compression, they must be supplied by parameter setup; */
  107. /* for decompression, they are read from the SOF marker. */
  108. int component_id; /* identifier for this component (0..255) */
  109. int component_index; /* its index in SOF or cinfo->comp_info[] */
  110. int h_samp_factor; /* horizontal sampling factor (1..4) */
  111. int v_samp_factor; /* vertical sampling factor (1..4) */
  112. int quant_tbl_no; /* quantization table selector (0..3) */
  113. /* These values may vary between scans. */
  114. /* For compression, they must be supplied by parameter setup; */
  115. /* for decompression, they are read from the SOS marker. */
  116. /* The decompressor output side may not use these variables. */
  117. int dc_tbl_no; /* DC entropy table selector (0..3) */
  118. int ac_tbl_no; /* AC entropy table selector (0..3) */
  119. /* Remaining fields should be treated as private by applications. */
  120. /* These values are computed during compression or decompression startup: */
  121. /* Component's size in DCT blocks.
  122. * Any dummy blocks added to complete an MCU are not counted; therefore
  123. * these values do not depend on whether a scan is interleaved or not.
  124. */
  125. JDIMENSION width_in_blocks;
  126. JDIMENSION height_in_blocks;
  127. /* Size of a DCT block in samples. Always DCTSIZE for compression.
  128. * For decompression this is the size of the output from one DCT block,
  129. * reflecting any scaling we choose to apply during the IDCT step.
  130. * Values of 1,2,4,8 are likely to be supported. Note that different
  131. * components may receive different IDCT scalings.
  132. */
  133. int DCT_scaled_size;
  134. /* The downsampled dimensions are the component's actual, unpadded number
  135. * of samples at the main buffer (preprocessing/compression interface), thus
  136. * downsampled_width = ceil(image_width * Hi/Hmax)
  137. * and similarly for height. For decompression, IDCT scaling is included, so
  138. * downsampled_width = ceil(image_width * Hi/Hmax * DCT_scaled_size/DCTSIZE)
  139. */
  140. JDIMENSION downsampled_width; /* actual width in samples */
  141. JDIMENSION downsampled_height; /* actual height in samples */
  142. /* This flag is used only for decompression. In cases where some of the
  143. * components will be ignored (eg grayscale output from YCbCr image),
  144. * we can skip most computations for the unused components.
  145. */
  146. boolean component_needed; /* do we need the value of this component? */
  147. /* These values are computed before starting a scan of the component. */
  148. /* The decompressor output side may not use these variables. */
  149. int MCU_width; /* number of blocks per MCU, horizontally */
  150. int MCU_height; /* number of blocks per MCU, vertically */
  151. int MCU_blocks; /* MCU_width * MCU_height */
  152. int MCU_sample_width; /* MCU width in samples, MCU_width*DCT_scaled_size */
  153. int last_col_width; /* # of non-dummy blocks across in last MCU */
  154. int last_row_height; /* # of non-dummy blocks down in last MCU */
  155. /* Saved quantization table for component; NULL if none yet saved.
  156. * See jdinput.c comments about the need for this information.
  157. * This field is not currently used by the compressor.
  158. */
  159. JQUANT_TBL * quant_table;
  160. /* Private per-component storage for DCT or IDCT subsystem. */
  161. void * dct_table;
  162. } jpeg_component_info;
  163. /* The script for encoding a multiple-scan file is an array of these: */
  164. typedef struct {
  165. int comps_in_scan; /* number of components encoded in this scan */
  166. int component_index[MAX_COMPS_IN_SCAN]; /* their SOF/comp_info[] indexes */
  167. int Ss, Se; /* progressive JPEG spectral selection parms */
  168. int Ah, Al; /* progressive JPEG successive approx. parms */
  169. } jpeg_scan_info;
  170. /* Known color spaces. */
  171. typedef enum {
  172. JCS_UNKNOWN, /* error/unspecified */
  173. JCS_GRAYSCALE, /* monochrome */
  174. JCS_RGB, /* red/green/blue */
  175. JCS_YCbCr, /* Y/Cb/Cr (also known as YUV) */
  176. JCS_CMYK, /* C/M/Y/K */
  177. #ifdef NIFTY
  178. JCS_YCC, /* PhotoYCC */
  179. JCS_RGBA, /* RGB-Alpha */
  180. JCS_YCbCrA, /* Y/Cb/Cr/Alpha */
  181. JCS_RGBA_LEGACY, /* RGB-Alpha with the color inversion bug.*/
  182. JCS_YCbCrA_LEGACY, /* Y/Cb/Cr/Alpha with the color inversion bug.*/
  183. JCS_YCCA, /* PhotoYCC-Alpha */
  184. #endif
  185. JCS_YCCK, /* Y/Cb/Cr/K */
  186. #ifdef WIAJPEG
  187. JCS_BGR
  188. #endif
  189. } J_COLOR_SPACE;
  190. /* DCT/IDCT algorithm options. */
  191. typedef enum {
  192. JDCT_ISLOW, /* slow but accurate integer algorithm */
  193. JDCT_IFAST, /* faster, less accurate integer method */
  194. JDCT_FLOAT /* floating-point: accurate, fast on fast HW */
  195. } J_DCT_METHOD;
  196. #ifndef JDCT_DEFAULT /* may be overridden in jconfig.h */
  197. #define JDCT_DEFAULT JDCT_ISLOW
  198. #endif
  199. #ifndef JDCT_FASTEST /* may be overridden in jconfig.h */
  200. #define JDCT_FASTEST JDCT_IFAST
  201. #endif
  202. /* Dithering options for decompression. */
  203. typedef enum {
  204. JDITHER_NONE, /* no dithering */
  205. JDITHER_ORDERED, /* simple ordered dither */
  206. JDITHER_FS /* Floyd-Steinberg error diffusion dither */
  207. } J_DITHER_MODE;
  208. /* Common fields between JPEG compression and decompression master structs. */
  209. #define jpeg_common_fields \
  210. struct jpeg_error_mgr * err; /* Error handler module */\
  211. struct jpeg_memory_mgr * mem; /* Memory manager module */\
  212. struct jpeg_progress_mgr * progress; /* Progress monitor, or NULL if none */\
  213. boolean is_decompressor; /* so common code can tell which is which */\
  214. int global_state /* for checking call sequence validity */
  215. /* Routines that are to be used by both halves of the library are declared
  216. * to receive a pointer to this structure. There are no actual instances of
  217. * jpeg_common_struct, only of jpeg_compress_struct and jpeg_decompress_struct.
  218. */
  219. struct jpeg_common_struct {
  220. jpeg_common_fields; /* Fields common to both master struct types */
  221. /* Additional fields follow in an actual jpeg_compress_struct or
  222. * jpeg_decompress_struct. All three structs must agree on these
  223. * initial fields! (This would be a lot cleaner in C++.)
  224. */
  225. };
  226. typedef struct jpeg_common_struct * j_common_ptr;
  227. typedef struct jpeg_compress_struct * j_compress_ptr;
  228. typedef struct jpeg_decompress_struct * j_decompress_ptr;
  229. /* Master record for a compression instance */
  230. struct jpeg_compress_struct {
  231. jpeg_common_fields; /* Fields shared with jpeg_decompress_struct */
  232. /* Destination for compressed data */
  233. struct jpeg_destination_mgr * dest;
  234. /* Description of source image --- these fields must be filled in by
  235. * outer application before starting compression. in_color_space must
  236. * be correct before you can even call jpeg_set_defaults().
  237. */
  238. JDIMENSION image_width; /* input image width */
  239. JDIMENSION image_height; /* input image height */
  240. int input_components; /* # of color components in input image */
  241. J_COLOR_SPACE in_color_space; /* colorspace of input image */
  242. double input_gamma; /* image gamma of input image */
  243. /* Compression parameters --- these fields must be set before calling
  244. * jpeg_start_compress(). We recommend calling jpeg_set_defaults() to
  245. * initialize everything to reasonable defaults, then changing anything
  246. * the application specifically wants to change. That way you won't get
  247. * burnt when new parameters are added. Also note that there are several
  248. * helper routines to simplify changing parameters.
  249. */
  250. int data_precision; /* bits of precision in image data */
  251. int num_components; /* # of color components in JPEG image */
  252. J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */
  253. jpeg_component_info * comp_info;
  254. /* comp_info[i] describes component that appears i'th in SOF */
  255. JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS];
  256. /* ptrs to coefficient quantization tables, or NULL if not defined */
  257. JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  258. JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  259. /* ptrs to Huffman coding tables, or NULL if not defined */
  260. UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
  261. UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
  262. UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
  263. int num_scans; /* # of entries in scan_info array */
  264. const jpeg_scan_info * scan_info; /* script for multi-scan file, or NULL */
  265. /* The default value of scan_info is NULL, which causes a single-scan
  266. * sequential JPEG file to be emitted. To create a multi-scan file,
  267. * set num_scans and scan_info to point to an array of scan definitions.
  268. */
  269. boolean raw_data_in; /* TRUE=caller supplies downsampled data */
  270. boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */
  271. boolean optimize_coding; /* TRUE=optimize entropy encoding parms */
  272. boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  273. int smoothing_factor; /* 1..100, or 0 for no input smoothing */
  274. J_DCT_METHOD dct_method; /* DCT algorithm selector */
  275. /* The restart interval can be specified in absolute MCUs by setting
  276. * restart_interval, or in MCU rows by setting restart_in_rows
  277. * (in which case the correct restart_interval will be figured
  278. * for each scan).
  279. */
  280. unsigned int restart_interval; /* MCUs per restart, or 0 for no restart */
  281. int restart_in_rows; /* if > 0, MCU rows per restart interval */
  282. #ifdef NIFTY
  283. /* special for NIFTY. The number of bytes in a compression/decompression
  284. memory buffer. */
  285. int bytes_in_buffer;
  286. #endif
  287. /* Parameters controlling emission of special markers. */
  288. boolean write_JFIF_header; /* should a JFIF marker be written? */
  289. /* These three values are not used by the JPEG code, merely copied */
  290. /* into the JFIF APP0 marker. density_unit can be 0 for unknown, */
  291. /* 1 for dots/inch, or 2 for dots/cm. Note that the pixel aspect */
  292. /* ratio is defined by X_density/Y_density even when density_unit=0. */
  293. UINT8 density_unit; /* JFIF code for pixel size units */
  294. UINT16 X_density; /* Horizontal pixel density */
  295. UINT16 Y_density; /* Vertical pixel density */
  296. boolean write_Adobe_marker; /* should an Adobe marker be written? */
  297. /* State variable: index of next scanline to be written to
  298. * jpeg_write_scanlines(). Application may use this to control its
  299. * processing loop, e.g., "while (next_scanline < image_height)".
  300. */
  301. JDIMENSION next_scanline; /* 0 .. image_height-1 */
  302. /* Remaining fields are known throughout compressor, but generally
  303. * should not be touched by a surrounding application.
  304. */
  305. /*
  306. * These fields are computed during compression startup
  307. */
  308. boolean progressive_mode; /* TRUE if scan script uses progressive mode */
  309. int max_h_samp_factor; /* largest h_samp_factor */
  310. int max_v_samp_factor; /* largest v_samp_factor */
  311. JDIMENSION total_iMCU_rows; /* # of iMCU rows to be input to coef ctlr */
  312. /* The coefficient controller receives data in units of MCU rows as defined
  313. * for fully interleaved scans (whether the JPEG file is interleaved or not).
  314. * There are v_samp_factor * DCTSIZE sample rows of each component in an
  315. * "iMCU" (interleaved MCU) row.
  316. */
  317. /*
  318. * These fields are valid during any one scan.
  319. * They describe the components and MCUs actually appearing in the scan.
  320. */
  321. int comps_in_scan; /* # of JPEG components in this scan */
  322. jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  323. /* *cur_comp_info[i] describes component that appears i'th in SOS */
  324. JDIMENSION MCUs_per_row; /* # of MCUs across the image */
  325. JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */
  326. int blocks_in_MCU; /* # of DCT blocks per MCU */
  327. int MCU_membership[C_MAX_BLOCKS_IN_MCU];
  328. /* MCU_membership[i] is index in cur_comp_info of component owning */
  329. /* i'th block in an MCU */
  330. int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */
  331. /*
  332. * Links to compression subobjects (methods and private variables of modules)
  333. */
  334. struct jpeg_comp_master * master;
  335. struct jpeg_c_main_controller * main;
  336. struct jpeg_c_prep_controller * prep;
  337. struct jpeg_c_coef_controller * coef;
  338. struct jpeg_marker_writer * marker;
  339. struct jpeg_color_converter * cconvert;
  340. struct jpeg_downsampler * downsample;
  341. struct jpeg_forward_dct * fdct;
  342. struct jpeg_entropy_encoder * entropy;
  343. };
  344. /* Master record for a decompression instance */
  345. struct jpeg_decompress_struct {
  346. jpeg_common_fields; /* Fields shared with jpeg_compress_struct */
  347. /* Source of compressed data */
  348. struct jpeg_source_mgr * src;
  349. /* Basic description of image --- filled in by jpeg_read_header(). */
  350. /* Application may inspect these values to decide how to process image. */
  351. JDIMENSION image_width; /* nominal image width (from SOF marker) */
  352. JDIMENSION image_height; /* nominal image height */
  353. int num_components; /* # of color components in JPEG image */
  354. J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */
  355. /* Decompression processing parameters --- these fields must be set before
  356. * calling jpeg_start_decompress(). Note that jpeg_read_header() initializes
  357. * them to default values.
  358. */
  359. J_COLOR_SPACE out_color_space; /* colorspace for output */
  360. unsigned int scale_num, scale_denom; /* fraction by which to scale image */
  361. double output_gamma; /* image gamma wanted in output */
  362. boolean buffered_image; /* TRUE=multiple output passes */
  363. boolean raw_data_out; /* TRUE=downsampled data wanted */
  364. J_DCT_METHOD dct_method; /* IDCT algorithm selector */
  365. boolean do_fancy_upsampling; /* TRUE=apply fancy upsampling */
  366. boolean do_block_smoothing; /* TRUE=apply interblock smoothing */
  367. boolean quantize_colors; /* TRUE=colormapped output wanted */
  368. /* the following are ignored if not quantize_colors: */
  369. J_DITHER_MODE dither_mode; /* type of color dithering to use */
  370. boolean two_pass_quantize; /* TRUE=use two-pass color quantization */
  371. int desired_number_of_colors; /* max # colors to use in created colormap */
  372. /* these are significant only in buffered-image mode: */
  373. boolean enable_1pass_quant; /* enable future use of 1-pass quantizer */
  374. boolean enable_external_quant;/* enable future use of external colormap */
  375. boolean enable_2pass_quant; /* enable future use of 2-pass quantizer */
  376. /* Description of actual output image that will be returned to application.
  377. * These fields are computed by jpeg_start_decompress().
  378. * You can also use jpeg_calc_output_dimensions() to determine these values
  379. * in advance of calling jpeg_start_decompress().
  380. */
  381. JDIMENSION output_width; /* scaled image width */
  382. JDIMENSION output_height; /* scaled image height */
  383. int out_color_components; /* # of color components in out_color_space */
  384. int output_components; /* # of color components returned */
  385. /* output_components is 1 (a colormap index) when quantizing colors;
  386. * otherwise it equals out_color_components.
  387. */
  388. int rec_outbuf_height; /* min recommended height of scanline buffer */
  389. /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
  390. * high, space and time will be wasted due to unnecessary data copying.
  391. * Usually rec_outbuf_height will be 1 or 2, at most 4.
  392. */
  393. /* When quantizing colors, the output colormap is described by these fields.
  394. * The application can supply a colormap by setting colormap non-NULL before
  395. * calling jpeg_start_decompress; otherwise a colormap is created during
  396. * jpeg_start_decompress or jpeg_start_output.
  397. * The map has out_color_components rows and actual_number_of_colors columns.
  398. */
  399. int actual_number_of_colors; /* number of entries in use */
  400. JSAMPARRAY colormap; /* The color map as a 2-D pixel array */
  401. /* State variables: these variables indicate the progress of decompression.
  402. * The application may examine these but must not modify them.
  403. */
  404. /* Row index of next scanline to be read from jpeg_read_scanlines().
  405. * Application may use this to control its processing loop, e.g.,
  406. * "while (output_scanline < output_height)".
  407. */
  408. JDIMENSION output_scanline; /* 0 .. output_height-1 */
  409. /* Current input scan number and number of iMCU rows completed in scan.
  410. * These indicate the progress of the decompressor input side.
  411. */
  412. int input_scan_number; /* Number of SOS markers seen so far */
  413. JDIMENSION input_iMCU_row; /* Number of iMCU rows completed */
  414. /* The "output scan number" is the notional scan being displayed by the
  415. * output side. The decompressor will not allow output scan/row number
  416. * to get ahead of input scan/row, but it can fall arbitrarily far behind.
  417. */
  418. int output_scan_number; /* Nominal scan number being displayed */
  419. JDIMENSION output_iMCU_row; /* Number of iMCU rows read */
  420. /* Current progression status. coef_bits[c][i] indicates the precision
  421. * with which component c's DCT coefficient i (in zigzag order) is known.
  422. * It is -1 when no data has yet been received, otherwise it is the point
  423. * transform (shift) value for the most recent scan of the coefficient
  424. * (thus, 0 at completion of the progression).
  425. * This pointer is NULL when reading a non-progressive file.
  426. */
  427. int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
  428. /* Internal JPEG parameters --- the application usually need not look at
  429. * these fields. Note that the decompressor output side may not use
  430. * any parameters that can change between scans.
  431. */
  432. /* Quantization and Huffman tables are carried forward across input
  433. * datastreams when processing abbreviated JPEG datastreams.
  434. */
  435. JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS];
  436. /* ptrs to coefficient quantization tables, or NULL if not defined */
  437. JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  438. JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  439. /* ptrs to Huffman coding tables, or NULL if not defined */
  440. /* These parameters are never carried across datastreams, since they
  441. * are given in SOF/SOS markers or defined to be reset by SOI.
  442. */
  443. int data_precision; /* bits of precision in image data */
  444. jpeg_component_info * comp_info;
  445. /* comp_info[i] describes component that appears i'th in SOF */
  446. boolean progressive_mode; /* TRUE if SOFn specifies progressive mode */
  447. boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */
  448. UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
  449. UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
  450. UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
  451. unsigned int restart_interval; /* MCUs per restart interval, or 0 for no restart */
  452. /* These fields record data obtained from optional markers recognized by
  453. * the JPEG library.
  454. */
  455. boolean saw_JFIF_marker; /* TRUE iff a JFIF APP0 marker was found */
  456. /* Data copied from JFIF marker: */
  457. UINT8 density_unit; /* JFIF code for pixel size units */
  458. UINT16 X_density; /* Horizontal pixel density */
  459. UINT16 Y_density; /* Vertical pixel density */
  460. boolean saw_Adobe_marker; /* TRUE iff an Adobe APP14 marker was found */
  461. UINT8 Adobe_transform; /* Color transform code from Adobe marker */
  462. boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  463. /* Remaining fields are known throughout decompressor, but generally
  464. * should not be touched by a surrounding application.
  465. */
  466. /*
  467. * These fields are computed during decompression startup
  468. */
  469. int max_h_samp_factor; /* largest h_samp_factor */
  470. int max_v_samp_factor; /* largest v_samp_factor */
  471. int min_DCT_scaled_size; /* smallest DCT_scaled_size of any component */
  472. JDIMENSION total_iMCU_rows; /* # of iMCU rows in image */
  473. /* The coefficient controller's input and output progress is measured in
  474. * units of "iMCU" (interleaved MCU) rows. These are the same as MCU rows
  475. * in fully interleaved JPEG scans, but are used whether the scan is
  476. * interleaved or not. We define an iMCU row as v_samp_factor DCT block
  477. * rows of each component. Therefore, the IDCT output contains
  478. * v_samp_factor*DCT_scaled_size sample rows of a component per iMCU row.
  479. */
  480. JSAMPLE * sample_range_limit; /* table for fast range-limiting */
  481. /*
  482. * These fields are valid during any one scan.
  483. * They describe the components and MCUs actually appearing in the scan.
  484. * Note that the decompressor output side must not use these fields.
  485. */
  486. int comps_in_scan; /* # of JPEG components in this scan */
  487. jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  488. /* *cur_comp_info[i] describes component that appears i'th in SOS */
  489. JDIMENSION MCUs_per_row; /* # of MCUs across the image */
  490. JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */
  491. int blocks_in_MCU; /* # of DCT blocks per MCU */
  492. int MCU_membership[D_MAX_BLOCKS_IN_MCU];
  493. /* MCU_membership[i] is index in cur_comp_info of component owning */
  494. /* i'th block in an MCU */
  495. int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */
  496. /* This field is shared between entropy decoder and marker parser.
  497. * It is either zero or the code of a JPEG marker that has been
  498. * read from the data source, but has not yet been processed.
  499. */
  500. int unread_marker;
  501. /*
  502. * Links to decompression subobjects (methods, private variables of modules)
  503. */
  504. struct jpeg_decomp_master * master;
  505. struct jpeg_d_main_controller * main;
  506. struct jpeg_d_coef_controller * coef;
  507. struct jpeg_d_post_controller * post;
  508. struct jpeg_input_controller * inputctl;
  509. struct jpeg_marker_reader * marker;
  510. struct jpeg_entropy_decoder * entropy;
  511. struct jpeg_inverse_dct * idct;
  512. struct jpeg_upsampler * upsample;
  513. struct jpeg_color_deconverter * cconvert;
  514. struct jpeg_color_quantizer * cquantize;
  515. };
  516. /* "Object" declarations for JPEG modules that may be supplied or called
  517. * directly by the surrounding application.
  518. * As with all objects in the JPEG library, these structs only define the
  519. * publicly visible methods and state variables of a module. Additional
  520. * private fields may exist after the public ones.
  521. */
  522. /* Error handler object */
  523. struct jpeg_error_mgr {
  524. /* Error exit handler: does not return to caller */
  525. JMETHOD(void, error_exit, (j_common_ptr cinfo));
  526. /* Conditionally emit a trace or warning message */
  527. JMETHOD(void, emit_message, (j_common_ptr cinfo, int msg_level));
  528. /* Routine that actually outputs a trace or error message */
  529. JMETHOD(void, output_message, (j_common_ptr cinfo));
  530. /* Format a message string for the most recent JPEG error or message */
  531. JMETHOD(void, format_message, (j_common_ptr cinfo, char * buffer));
  532. #define JMSG_LENGTH_MAX 200 /* recommended size of format_message buffer */
  533. /* Reset error state variables at start of a new image */
  534. JMETHOD(void, reset_error_mgr, (j_common_ptr cinfo));
  535. /* The message ID code and any parameters are saved here.
  536. * A message can have one string parameter or up to 8 int parameters.
  537. */
  538. int msg_code;
  539. #define JMSG_STR_PARM_MAX 80
  540. union {
  541. int i[8];
  542. char s[JMSG_STR_PARM_MAX];
  543. } msg_parm;
  544. /* Standard state variables for error facility */
  545. int trace_level; /* max msg_level that will be displayed */
  546. /* For recoverable corrupt-data errors, we emit a warning message,
  547. * but keep going unless emit_message chooses to abort. emit_message
  548. * should count warnings in num_warnings. The surrounding application
  549. * can check for bad data by seeing if num_warnings is nonzero at the
  550. * end of processing.
  551. */
  552. long num_warnings; /* number of corrupt-data warnings */
  553. /* These fields point to the table(s) of error message strings.
  554. * An application can change the table pointer to switch to a different
  555. * message list (typically, to change the language in which errors are
  556. * reported). Some applications may wish to add additional error codes
  557. * that will be handled by the JPEG library error mechanism; the second
  558. * table pointer is used for this purpose.
  559. *
  560. * First table includes all errors generated by JPEG library itself.
  561. * Error code 0 is reserved for a "no such error string" message.
  562. */
  563. const char * const * jpeg_message_table; /* Library errors */
  564. int last_jpeg_message; /* Table contains strings 0..last_jpeg_message */
  565. /* Second table can be added by application (see cjpeg/djpeg for example).
  566. * It contains strings numbered first_addon_message..last_addon_message.
  567. */
  568. const char * const * addon_message_table; /* Non-library errors */
  569. int first_addon_message; /* code for first string in addon table */
  570. int last_addon_message; /* code for last string in addon table */
  571. };
  572. /* Progress monitor object */
  573. struct jpeg_progress_mgr {
  574. JMETHOD(void, progress_monitor, (j_common_ptr cinfo));
  575. long pass_counter; /* work units completed in this pass */
  576. long pass_limit; /* total number of work units in this pass */
  577. int completed_passes; /* passes completed so far */
  578. int total_passes; /* total number of passes expected */
  579. };
  580. /* Data destination object for compression */
  581. struct jpeg_destination_mgr {
  582. JOCTET * next_output_byte; /* => next byte to write in buffer */
  583. size_t free_in_buffer; /* # of byte spaces remaining in buffer */
  584. JMETHOD(void, init_destination, (j_compress_ptr cinfo));
  585. JMETHOD(boolean, empty_output_buffer, (j_compress_ptr cinfo));
  586. JMETHOD(void, term_destination, (j_compress_ptr cinfo));
  587. };
  588. /* Data source object for decompression */
  589. struct jpeg_source_mgr {
  590. const JOCTET * next_input_byte; /* => next byte to read from buffer */
  591. size_t bytes_in_buffer; /* # of bytes remaining in buffer */
  592. JMETHOD(void, init_source, (j_decompress_ptr cinfo));
  593. JMETHOD(boolean, fill_input_buffer, (j_decompress_ptr cinfo));
  594. JMETHOD(void, skip_input_data, (j_decompress_ptr cinfo, long num_bytes));
  595. JMETHOD(boolean, resync_to_restart, (j_decompress_ptr cinfo, int desired));
  596. JMETHOD(void, term_source, (j_decompress_ptr cinfo));
  597. };
  598. /* Memory manager object.
  599. * Allocates "small" objects (a few K total), "large" objects (tens of K),
  600. * and "really big" objects (virtual arrays with backing store if needed).
  601. * The memory manager does not allow individual objects to be freed; rather,
  602. * each created object is assigned to a pool, and whole pools can be freed
  603. * at once. This is faster and more convenient than remembering exactly what
  604. * to free, especially where malloc()/free() are not too speedy.
  605. * NB: alloc routines never return NULL. They exit to error_exit if not
  606. * successful.
  607. */
  608. #define JPOOL_PERMANENT 0 /* lasts until master record is destroyed */
  609. #define JPOOL_IMAGE 1 /* lasts until done with image/datastream */
  610. #define JPOOL_NUMPOOLS 2
  611. typedef struct jvirt_sarray_control * jvirt_sarray_ptr;
  612. typedef struct jvirt_barray_control * jvirt_barray_ptr;
  613. struct jpeg_memory_mgr {
  614. /* Method pointers */
  615. JMETHOD(void *, alloc_small, (j_common_ptr cinfo, int pool_id,
  616. size_t sizeofobject));
  617. JMETHOD(void FAR *, alloc_large, (j_common_ptr cinfo, int pool_id,
  618. size_t sizeofobject));
  619. JMETHOD(JSAMPARRAY, alloc_sarray, (j_common_ptr cinfo, int pool_id,
  620. JDIMENSION samplesperrow,
  621. JDIMENSION numrows));
  622. JMETHOD(JBLOCKARRAY, alloc_barray, (j_common_ptr cinfo, int pool_id,
  623. JDIMENSION blocksperrow,
  624. JDIMENSION numrows));
  625. JMETHOD(jvirt_sarray_ptr, request_virt_sarray, (j_common_ptr cinfo,
  626. int pool_id,
  627. boolean pre_zero,
  628. JDIMENSION samplesperrow,
  629. JDIMENSION numrows,
  630. JDIMENSION maxaccess));
  631. JMETHOD(jvirt_barray_ptr, request_virt_barray, (j_common_ptr cinfo,
  632. int pool_id,
  633. boolean pre_zero,
  634. JDIMENSION blocksperrow,
  635. JDIMENSION numrows,
  636. JDIMENSION maxaccess));
  637. JMETHOD(void, realize_virt_arrays, (j_common_ptr cinfo));
  638. JMETHOD(JSAMPARRAY, access_virt_sarray, (j_common_ptr cinfo,
  639. jvirt_sarray_ptr ptr,
  640. JDIMENSION start_row,
  641. JDIMENSION num_rows,
  642. boolean writable));
  643. JMETHOD(JBLOCKARRAY, access_virt_barray, (j_common_ptr cinfo,
  644. jvirt_barray_ptr ptr,
  645. JDIMENSION start_row,
  646. JDIMENSION num_rows,
  647. boolean writable));
  648. JMETHOD(void, free_pool, (j_common_ptr cinfo, int pool_id));
  649. JMETHOD(void, self_destruct, (j_common_ptr cinfo));
  650. /* Limit on memory allocation for this JPEG object. (Note that this is
  651. * merely advisory, not a guaranteed maximum; it only affects the space
  652. * used for virtual-array buffers.) May be changed by outer application
  653. * after creating the JPEG object.
  654. */
  655. long max_memory_to_use;
  656. };
  657. /* Routine signature for application-supplied marker processing methods.
  658. * Need not pass marker code since it is stored in cinfo->unread_marker.
  659. */
  660. typedef JMETHOD(boolean, jpeg_marker_parser_method, (j_decompress_ptr cinfo));
  661. /* Declarations for routines called by application.
  662. * The JPP macro hides prototype parameters from compilers that can't cope.
  663. * Note JPP requires double parentheses.
  664. */
  665. #ifdef HAVE_PROTOTYPES
  666. #define JPP(arglist) arglist
  667. #else
  668. #define JPP(arglist) ()
  669. #endif
  670. /* Short forms of external names for systems with brain-damaged linkers.
  671. * We shorten external names to be unique in the first six letters, which
  672. * is good enough for all known systems.
  673. * (If your compiler itself needs names to be unique in less than 15
  674. * characters, you are out of luck. Get a better compiler.)
  675. */
  676. #ifdef NEED_SHORT_EXTERNAL_NAMES
  677. #define jpeg_std_error jStdError
  678. #define jpeg_create_compress jCreaCompress
  679. #define jpeg_create_decompress jCreaDecompress
  680. #define jpeg_destroy_compress jDestCompress
  681. #define jpeg_destroy_decompress jDestDecompress
  682. #define jpeg_stdio_dest jStdDest
  683. #define jpeg_stdio_src jStdSrc
  684. #define jpeg_set_defaults jSetDefaults
  685. #define jpeg_set_colorspace jSetColorspace
  686. #define jpeg_default_colorspace jDefColorspace
  687. #define jpeg_set_quality jSetQuality
  688. #define jpeg_set_linear_quality jSetLQuality
  689. #define jpeg_add_quant_table jAddQuantTable
  690. #define jpeg_quality_scaling jQualityScaling
  691. #define jpeg_simple_progression jSimProgress
  692. #define jpeg_suppress_tables jSuppressTables
  693. #define jpeg_alloc_quant_table jAlcQTable
  694. #define jpeg_alloc_huff_table jAlcHTable
  695. #define jpeg_start_compress jStrtCompress
  696. #define jpeg_write_scanlines jWrtScanlines
  697. #define jpeg_finish_compress jFinCompress
  698. #define jpeg_write_raw_data jWrtRawData
  699. #define jpeg_write_marker jWrtMarker
  700. #define jpeg_write_tables jWrtTables
  701. #define jpeg_read_header jReadHeader
  702. #define jpeg_start_decompress jStrtDecompress
  703. #define jpeg_read_scanlines jReadScanlines
  704. #define jpeg_finish_decompress jFinDecompress
  705. #define jpeg_read_raw_data jReadRawData
  706. #define jpeg_has_multiple_scans jHasMultScn
  707. #define jpeg_start_output jStrtOutput
  708. #define jpeg_finish_output jFinOutput
  709. #define jpeg_input_complete jInComplete
  710. #define jpeg_new_colormap jNewCMap
  711. #define jpeg_consume_input jConsumeInput
  712. #define jpeg_calc_output_dimensions jCalcDimensions
  713. #define jpeg_set_marker_processor jSetMarker
  714. #define jpeg_read_coefficients jReadCoefs
  715. #define jpeg_write_coefficients jWrtCoefs
  716. #define jpeg_copy_critical_parameters jCopyCrit
  717. #define jpeg_abort_compress jAbrtCompress
  718. #define jpeg_abort_decompress jAbrtDecompress
  719. #define jpeg_abort jAbort
  720. #define jpeg_destroy jDestroy
  721. #define jpeg_resync_to_restart jResyncRestart
  722. #endif /* NEED_SHORT_EXTERNAL_NAMES */
  723. /* Default error-management setup */
  724. EXTERN struct jpeg_error_mgr * __cdecl jpeg_std_error JPP((struct jpeg_error_mgr *err));
  725. /* Initialization and destruction of JPEG compression objects */
  726. /* NB: you must set up the error-manager BEFORE calling jpeg_create_xxx */
  727. EXTERN void __cdecl jpeg_create_compress JPP((j_compress_ptr cinfo));
  728. EXTERN void __cdecl jpeg_create_decompress JPP((j_decompress_ptr cinfo));
  729. EXTERN void __cdecl jpeg_destroy_compress JPP((j_compress_ptr cinfo));
  730. EXTERN void __cdecl jpeg_destroy_decompress JPP((j_decompress_ptr cinfo));
  731. /* Standard data source and destination managers: stdio streams. */
  732. /* Caller is responsible for opening the file before and closing after. */
  733. EXTERN void __cdecl jpeg_stdio_dest JPP((j_compress_ptr cinfo, FILE * outfile));
  734. EXTERN void __cdecl jpeg_stdio_src JPP((j_decompress_ptr cinfo, FILE * infile));
  735. #ifdef NIFTY
  736. /* and for NIFTY, a pair for doing this to and from memory. */
  737. EXTERN void __cdecl jpeg_mem_dest JPP((j_compress_ptr cinfo, JOCTET *buffer));
  738. EXTERN void __cdecl jpeg_mem_src JPP((j_decompress_ptr cinfo, JOCTET *buffer, int bufsize));
  739. #endif
  740. /* Default parameter setup for compression */
  741. EXTERN void __cdecl jpeg_set_defaults JPP((j_compress_ptr cinfo));
  742. /* Compression parameter setup aids */
  743. EXTERN void __cdecl jpeg_set_colorspace JPP((j_compress_ptr cinfo,
  744. J_COLOR_SPACE colorspace));
  745. EXTERN void __cdecl jpeg_default_colorspace JPP((j_compress_ptr cinfo));
  746. EXTERN void __cdecl jpeg_set_quality JPP((j_compress_ptr cinfo, int quality,
  747. boolean force_baseline));
  748. EXTERN void __cdecl jpeg_set_linear_quality JPP((j_compress_ptr cinfo,
  749. int scale_factor,
  750. boolean force_baseline));
  751. EXTERN void __cdecl jpeg_add_quant_table JPP((j_compress_ptr cinfo, int which_tbl,
  752. const unsigned int *basic_table,
  753. int scale_factor,
  754. boolean force_baseline));
  755. EXTERN int __cdecl jpeg_quality_scaling JPP((int quality));
  756. EXTERN void __cdecl jpeg_simple_progression JPP((j_compress_ptr cinfo));
  757. EXTERN void __cdecl jpeg_suppress_tables JPP((j_compress_ptr cinfo,
  758. boolean suppress));
  759. EXTERN JQUANT_TBL * __cdecl jpeg_alloc_quant_table JPP((j_common_ptr cinfo));
  760. EXTERN JHUFF_TBL * __cdecl jpeg_alloc_huff_table JPP((j_common_ptr cinfo));
  761. /* Main entry points for compression */
  762. EXTERN void __cdecl jpeg_start_compress JPP((j_compress_ptr cinfo,
  763. boolean write_all_tables));
  764. EXTERN JDIMENSION __cdecl jpeg_write_scanlines JPP((j_compress_ptr cinfo,
  765. JSAMPARRAY scanlines,
  766. JDIMENSION num_lines));
  767. EXTERN void __cdecl jpeg_finish_compress JPP((j_compress_ptr cinfo));
  768. /* Replaces jpeg_write_scanlines when writing raw downsampled data. */
  769. EXTERN JDIMENSION __cdecl jpeg_write_raw_data JPP((j_compress_ptr cinfo,
  770. JSAMPIMAGE data,
  771. JDIMENSION num_lines));
  772. /* Write a special marker. See libjpeg.doc concerning safe usage. */
  773. EXTERN void __cdecl jpeg_write_marker JPP((j_compress_ptr cinfo, int marker,
  774. const JOCTET *dataptr, unsigned int datalen));
  775. /* Alternate compression function: just write an abbreviated table file */
  776. EXTERN void __cdecl jpeg_write_tables JPP((j_compress_ptr cinfo));
  777. /* Decompression startup: read start of JPEG datastream to see what's there */
  778. EXTERN int __cdecl jpeg_read_header JPP((j_decompress_ptr cinfo,
  779. boolean require_image));
  780. /* Return value is one of: */
  781. #define JPEG_SUSPENDED 0 /* Suspended due to lack of input data */
  782. #define JPEG_HEADER_OK 1 /* Found valid image datastream */
  783. #define JPEG_HEADER_TABLES_ONLY 2 /* Found valid table-specs-only datastream */
  784. /* If you pass require_image = TRUE (normal case), you need not check for
  785. * a TABLES_ONLY return code; an abbreviated file will cause an error exit.
  786. * JPEG_SUSPENDED is only possible if you use a data source module that can
  787. * give a suspension return (the stdio source module doesn't).
  788. */
  789. /* Main entry points for decompression */
  790. EXTERN boolean __cdecl jpeg_start_decompress JPP((j_decompress_ptr cinfo));
  791. EXTERN JDIMENSION __cdecl jpeg_read_scanlines JPP((j_decompress_ptr cinfo,
  792. JSAMPARRAY scanlines,
  793. JDIMENSION max_lines));
  794. EXTERN boolean __cdecl jpeg_finish_decompress JPP((j_decompress_ptr cinfo));
  795. /* Replaces jpeg_read_scanlines when reading raw downsampled data. */
  796. EXTERN JDIMENSION __cdecl jpeg_read_raw_data JPP((j_decompress_ptr cinfo,
  797. JSAMPIMAGE data,
  798. JDIMENSION max_lines));
  799. /* Additional entry points for buffered-image mode. */
  800. EXTERN boolean __cdecl jpeg_has_multiple_scans JPP((j_decompress_ptr cinfo));
  801. EXTERN boolean __cdecl jpeg_start_output JPP((j_decompress_ptr cinfo,
  802. int scan_number));
  803. EXTERN boolean __cdecl jpeg_finish_output JPP((j_decompress_ptr cinfo));
  804. EXTERN boolean __cdecl jpeg_input_complete JPP((j_decompress_ptr cinfo));
  805. EXTERN void __cdecl jpeg_new_colormap JPP((j_decompress_ptr cinfo));
  806. EXTERN int __cdecl jpeg_consume_input JPP((j_decompress_ptr cinfo));
  807. /* Return value is one of: */
  808. /* #define JPEG_SUSPENDED 0 Suspended due to lack of input data */
  809. #define JPEG_REACHED_SOS 1 /* Reached start of new scan */
  810. #define JPEG_REACHED_EOI 2 /* Reached end of image */
  811. #define JPEG_ROW_COMPLETED 3 /* Completed one iMCU row */
  812. #define JPEG_SCAN_COMPLETED 4 /* Completed last iMCU row of a scan */
  813. /* Precalculate output dimensions for current decompression parameters. */
  814. EXTERN void __cdecl jpeg_calc_output_dimensions JPP((j_decompress_ptr cinfo));
  815. /* Install a special processing method for COM or APPn markers. */
  816. EXTERN void __cdecl jpeg_set_marker_processor JPP((j_decompress_ptr cinfo,
  817. int marker_code,
  818. jpeg_marker_parser_method routine));
  819. /* Read or write raw DCT coefficients --- useful for lossless transcoding. */
  820. EXTERN jvirt_barray_ptr * __cdecl jpeg_read_coefficients JPP((j_decompress_ptr cinfo));
  821. EXTERN void __cdecl jpeg_write_coefficients JPP((j_compress_ptr cinfo,
  822. jvirt_barray_ptr * coef_arrays));
  823. EXTERN void __cdecl jpeg_copy_critical_parameters JPP((j_decompress_ptr srcinfo,
  824. j_compress_ptr dstinfo));
  825. /* If you choose to abort compression or decompression before completing
  826. * jpeg_finish_(de)compress, then you need to clean up to release memory,
  827. * temporary files, etc. You can just call jpeg_destroy_(de)compress
  828. * if you're done with the JPEG object, but if you want to clean it up and
  829. * reuse it, call this:
  830. */
  831. EXTERN void __cdecl jpeg_abort_compress JPP((j_compress_ptr cinfo));
  832. EXTERN void __cdecl jpeg_abort_decompress JPP((j_decompress_ptr cinfo));
  833. /* Generic versions of jpeg_abort and jpeg_destroy that work on either
  834. * flavor of JPEG object. These may be more convenient in some places.
  835. */
  836. EXTERN void __cdecl jpeg_abort JPP((j_common_ptr cinfo));
  837. EXTERN void __cdecl jpeg_destroy JPP((j_common_ptr cinfo));
  838. /* Default restart-marker-resync procedure for use by data source modules */
  839. EXTERN boolean __cdecl jpeg_resync_to_restart JPP((j_decompress_ptr cinfo,
  840. int desired));
  841. /* These marker codes are exported since applications and data source modules
  842. * are likely to want to use them.
  843. */
  844. #define JPEG_RST0 0xD0 /* RST0 marker code */
  845. #define JPEG_EOI 0xD9 /* EOI marker code */
  846. #define JPEG_APP0 0xE0 /* APP0 marker code */
  847. #define JPEG_COM 0xFE /* COM marker code */
  848. /* If we have a brain-damaged compiler that emits warnings (or worse, errors)
  849. * for structure definitions that are never filled in, keep it quiet by
  850. * supplying dummy definitions for the various substructures.
  851. */
  852. #ifdef INCOMPLETE_TYPES_BROKEN
  853. #ifndef JPEG_INTERNALS /* will be defined in jpegint.h */
  854. struct jvirt_sarray_control { long dummy; };
  855. struct jvirt_barray_control { long dummy; };
  856. struct jpeg_comp_master { long dummy; };
  857. struct jpeg_c_main_controller { long dummy; };
  858. struct jpeg_c_prep_controller { long dummy; };
  859. struct jpeg_c_coef_controller { long dummy; };
  860. struct jpeg_marker_writer { long dummy; };
  861. struct jpeg_color_converter { long dummy; };
  862. struct jpeg_downsampler { long dummy; };
  863. struct jpeg_forward_dct { long dummy; };
  864. struct jpeg_entropy_encoder { long dummy; };
  865. struct jpeg_decomp_master { long dummy; };
  866. struct jpeg_d_main_controller { long dummy; };
  867. struct jpeg_d_coef_controller { long dummy; };
  868. struct jpeg_d_post_controller { long dummy; };
  869. struct jpeg_input_controller { long dummy; };
  870. struct jpeg_marker_reader { long dummy; };
  871. struct jpeg_entropy_decoder { long dummy; };
  872. struct jpeg_inverse_dct { long dummy; };
  873. struct jpeg_upsampler { long dummy; };
  874. struct jpeg_color_deconverter { long dummy; };
  875. struct jpeg_color_quantizer { long dummy; };
  876. #endif /* JPEG_INTERNALS */
  877. #endif /* INCOMPLETE_TYPES_BROKEN */
  878. /*
  879. * The JPEG library modules define JPEG_INTERNALS before including this file.
  880. * The internal structure declarations are read only when that is true.
  881. * Applications using the library should not include jpegint.h, but may wish
  882. * to include jerror.h.
  883. */
  884. #ifdef JPEG_INTERNALS
  885. #include "jpegint.h" /* fetch private declarations */
  886. #include "jerror.h" /* fetch error codes too */
  887. #endif
  888. #ifdef WIN32
  889. #ifdef __cplusplus
  890. }
  891. #endif
  892. #endif
  893. #endif /* JPEGLIB_H */