jpeglib.h 49 KB

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