jpeglib.h
上传用户:cxh8989
上传日期:2021-01-22
资源大小:2544k
文件大小:64k
源码类别:

射击游戏

开发平台:

Visual C++

  1. /*
  2.  * jpeglib.h
  3.  *
  4.  * Copyright (C) 1991-1998, 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.  * Visit the website at: http://www.ijg.org/
  8.  *
  9.  * This file defines the application interface for the JPEG library.
  10.  * Most applications using the library need only include this file,
  11.  * and perhaps jerror.h if they want to know the exact error codes.
  12.  */
  13. #ifndef JPEGLIB_H
  14. #define JPEGLIB_H
  15. /*
  16.  * First we include the configuration files that record how this
  17.  * installation of the JPEG library is set up.  jconfig.h can be
  18.  * generated automatically for many systems.  jmorecfg.h contains
  19.  * manual configuration options that most people need not worry about.
  20.  */
  21. #ifndef JCONFIG_INCLUDED /* in case jinclude.h already did */
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <iostream>
  25. #include <string.h>
  26. #include <stdarg.h>
  27. #include <math.h>
  28. #include <malloc.h>
  29. #include <string.h>
  30. #include <tchar.h>
  31. #include <windows.h>
  32. /*
  33.  * jconfig.doc
  34.  *
  35.  * Copyright (C) 1991-1994, Thomas G. Lane.
  36.  * This file is part of the Independent JPEG Group's software.
  37.  * For conditions of distribution and use, see the accompanying README file.
  38.  *
  39.  * This file documents the configuration options that are required to
  40.  * customize the JPEG software for a particular system.
  41.  *
  42.  * The actual configuration options for a particular installation are stored
  43.  * in jconfig.h.  On many machines, jconfig.h can be generated automatically
  44.  * or copied from one of the "canned" jconfig files that we supply.  But if
  45.  * you need to generate a jconfig.h file by hand, this file tells you how.
  46.  *
  47.  * DO NOT EDIT THIS FILE --- IT WON'T ACCOMPLISH ANYTHING.
  48.  * EDIT A COPY NAMED JCONFIG.H.
  49.  */
  50. /*
  51.  * These symbols indicate the properties of your machine or compiler.
  52.  * #define the symbol if yes, #undef it if no.
  53.  */
  54. /* Does your compiler support function prototypes?
  55.  * (If not, you also need to use ansi2knr, see install.doc)
  56.  */
  57. #define HAVE_PROTOTYPES
  58. /* Does your compiler support the declaration "unsigned char" ?
  59.  * How about "unsigned short" ?
  60.  */
  61. #define HAVE_UNSIGNED_CHAR
  62. #define HAVE_UNSIGNED_SHORT
  63. /* Define "void" as "char" if your compiler doesn't know about type void.
  64.  * NOTE: be sure to define void such that "void *" represents the most general
  65.  * pointer type, e.g., that returned by malloc().
  66.  */
  67. /* #define void char */
  68. /* Define "const" as empty if your compiler doesn't know the "const" keyword.
  69.  */
  70. /* #define const */
  71. /* Define this if an ordinary "char" type is unsigned.
  72.  * If you're not sure, leaving it undefined will work at some cost in speed.
  73.  * If you defined HAVE_UNSIGNED_CHAR then the speed difference is minimal.
  74.  */
  75. #undef CHAR_IS_UNSIGNED
  76. /* Define this if your system has an ANSI-conforming <stddef.h> file.
  77.  */
  78. #define HAVE_STDDEF_H
  79. /* Define this if your system has an ANSI-conforming <stdlib.h> file.
  80.  */
  81. #define HAVE_STDLIB_H
  82. /* Define this if your system does not have an ANSI/SysV <string.h>,
  83.  * but does have a BSD-style <strings.h>.
  84.  */
  85. #undef NEED_BSD_STRINGS
  86. /* Define this if your system does not provide typedef size_t in any of the
  87.  * ANSI-standard places (stddef.h, stdlib.h, or stdio.h), but places it in
  88.  * <sys/types.h> instead.
  89.  */
  90. #undef NEED_SYS_TYPES_H
  91. /* For 80x86 machines, you need to define NEED_FAR_POINTERS,
  92.  * unless you are using a large-data memory model or 80386 flat-memory mode.
  93.  * On less brain-damaged CPUs this symbol must not be defined.
  94.  * (Defining this symbol causes large data structures to be referenced through
  95.  * "far" pointers and to be allocated with a special version of malloc.)
  96.  */
  97. #undef NEED_FAR_POINTERS
  98. /* Define this if your linker needs global names to be unique in less
  99.  * than the first 15 characters.
  100.  */
  101. #undef NEED_SHORT_EXTERNAL_NAMES
  102. /* Although a real ANSI C compiler can deal perfectly well with pointers to
  103.  * unspecified structures (see "incomplete types" in the spec), a few pre-ANSI
  104.  * and pseudo-ANSI compilers get confused.  To keep one of these bozos happy,
  105.  * define INCOMPLETE_TYPES_BROKEN.  This is not recommended unless you
  106.  * actually get "missing structure definition" warnings or errors while
  107.  * compiling the JPEG code.
  108.  */
  109. #undef INCOMPLETE_TYPES_BROKEN
  110. /*
  111.  * The following options affect code selection within the JPEG library,
  112.  * but they don't need to be visible to applications using the library.
  113.  * To minimize application namespace pollution, the symbols won't be
  114.  * defined unless JPEG_INTERNALS has been defined.
  115.  */
  116. #ifdef JPEG_INTERNALS
  117. /* Define this if your compiler implements ">>" on signed values as a logical
  118.  * (unsigned) shift; leave it undefined if ">>" is a signed (arithmetic) shift,
  119.  * which is the normal and rational definition.
  120.  */
  121. #undef RIGHT_SHIFT_IS_UNSIGNED
  122. #endif /* JPEG_INTERNALS */
  123. /*
  124.  * The remaining options do not affect the JPEG library proper,
  125.  * but only the sample applications cjpeg/djpeg (see cjpeg.c, djpeg.c).
  126.  * Other applications can ignore these.
  127.  */
  128. #ifdef JPEG_CJPEG_DJPEG
  129. /* These defines indicate which image (non-JPEG) file formats are allowed. */
  130. #define BMP_SUPPORTED /* BMP image file format */
  131. #define GIF_SUPPORTED /* GIF image file format */
  132. #define PPM_SUPPORTED /* PBMPLUS PPM/PGM image file format */
  133. #undef RLE_SUPPORTED /* Utah RLE image file format */
  134. #define TARGA_SUPPORTED /* Targa image file format */
  135. /* Define this if you want to name both input and output files on the command
  136.  * line, rather than using stdout and optionally stdin.  You MUST do this if
  137.  * your system can't cope with binary I/O to stdin/stdout.  See comments at
  138.  * head of cjpeg.c or djpeg.c.
  139.  */
  140. #undef TWO_FILE_COMMANDLINE
  141. /* Define this if your system needs explicit cleanup of temporary files.
  142.  * This is crucial under MS-DOS, where the temporary "files" may be areas
  143.  * of extended memory; on most other systems it's not as important.
  144.  */
  145. #undef NEED_SIGNAL_CATCHER
  146. /* By default, we open image files with fopen(...,"rb") or fopen(...,"wb").
  147.  * This is necessary on systems that distinguish text files from binary files,
  148.  * and is harmless on most systems that don't.  If you have one of the rare
  149.  * systems that complains about the "b" spec, define this symbol.
  150.  */
  151. #undef DONT_USE_B_MODE
  152. /* Define this if you want percent-done progress reports from cjpeg/djpeg.
  153.  */
  154. #undef PROGRESS_REPORT
  155. #define HAVE_BOOLEAN
  156. #endif /* JPEG_CJPEG_DJPEG */
  157. #endif /* ifndef JCONFIG_INCLUDED */
  158. /*
  159.  * Define BITS_IN_JSAMPLE as either
  160.  *   8   for 8-bit sample values (the usual setting)
  161.  *   12  for 12-bit sample values
  162.  * Only 8 and 12 are legal data precisions for lossy JPEG according to the
  163.  * JPEG standard, and the IJG code does not support anything else!
  164.  * We do not support run-time selection of data precision, sorry.
  165.  */
  166. #define BITS_IN_JSAMPLE  8 /* use 8 or 12 */
  167. /*
  168.  * Maximum number of components (color channels) allowed in JPEG image.
  169.  * To meet the letter of the JPEG spec, set this to 255.  However, darn
  170.  * few applications need more than 4 channels (maybe 5 for CMYK + alpha
  171.  * mask).  We recommend 10 as a reasonable compromise; use 4 if you are
  172.  * really short on memory.  (Each allowed component costs a hundred or so
  173.  * bytes of storage, whether actually used in an image or not.)
  174.  */
  175. #define MAX_COMPONENTS  10 /* maximum number of image components */
  176. /*
  177.  * Basic data types.
  178.  * You may need to change these if you have a machine with unusual data
  179.  * type sizes; for example, "char" not 8 bits, "short" not 16 bits,
  180.  * or "long" not 32 bits.  We don't care whether "int" is 16 or 32 bits,
  181.  * but it had better be at least 16.
  182.  */
  183. /* Representation of a single sample (pixel element value).
  184.  * We frequently allocate large arrays of these, so it's important to keep
  185.  * them small.  But if you have memory to burn and access to char or short
  186.  * arrays is very slow on your hardware, you might want to change these.
  187.  */
  188. #if BITS_IN_JSAMPLE == 8
  189. /* JSAMPLE should be the smallest type that will hold the values 0..255.
  190.  * You can use a signed char by having GETJSAMPLE mask it with 0xFF.
  191.  */
  192. #ifdef HAVE_UNSIGNED_CHAR
  193. typedef unsigned char JSAMPLE;
  194. #define GETJSAMPLE(value)  ((int) (value))
  195. #else /* not HAVE_UNSIGNED_CHAR */
  196. typedef char JSAMPLE;
  197. #ifdef CHAR_IS_UNSIGNED
  198. #define GETJSAMPLE(value)  ((int) (value))
  199. #else
  200. #define GETJSAMPLE(value)  ((int) (value) & 0xFF)
  201. #endif /* CHAR_IS_UNSIGNED */
  202. #endif /* HAVE_UNSIGNED_CHAR */
  203. #define MAXJSAMPLE 255
  204. #define CENTERJSAMPLE 128
  205. #endif /* BITS_IN_JSAMPLE == 8 */
  206. #if BITS_IN_JSAMPLE == 12
  207. /* JSAMPLE should be the smallest type that will hold the values 0..4095.
  208.  * On nearly all machines "short" will do nicely.
  209.  */
  210. typedef short JSAMPLE;
  211. #define GETJSAMPLE(value)  ((int) (value))
  212. #define MAXJSAMPLE 4095
  213. #define CENTERJSAMPLE 2048
  214. #endif /* BITS_IN_JSAMPLE == 12 */
  215. /* Representation of a DCT frequency coefficient.
  216.  * This should be a signed value of at least 16 bits; "short" is usually OK.
  217.  * Again, we allocate large arrays of these, but you can change to int
  218.  * if you have memory to burn and "short" is really slow.
  219.  */
  220. typedef short JCOEF;
  221. /* Compressed datastreams are represented as arrays of JOCTET.
  222.  * These must be EXACTLY 8 bits wide, at least once they are written to
  223.  * external storage.  Note that when using the stdio data source/destination
  224.  * managers, this is also the data type passed to fread/fwrite.
  225.  */
  226. #ifdef HAVE_UNSIGNED_CHAR
  227. typedef unsigned char JOCTET;
  228. #define GETJOCTET(value)  (value)
  229. #else /* not HAVE_UNSIGNED_CHAR */
  230. typedef char JOCTET;
  231. #ifdef CHAR_IS_UNSIGNED
  232. #define GETJOCTET(value)  (value)
  233. #else
  234. #define GETJOCTET(value)  ((value) & 0xFF)
  235. #endif /* CHAR_IS_UNSIGNED */
  236. #endif /* HAVE_UNSIGNED_CHAR */
  237. /* These typedefs are used for various table entries and so forth.
  238.  * They must be at least as wide as specified; but making them too big
  239.  * won't cost a huge amount of memory, so we don't provide special
  240.  * extraction code like we did for JSAMPLE.  (In other words, these
  241.  * typedefs live at a different point on the speed/space tradeoff curve.)
  242.  */
  243. /* UINT8 must hold at least the values 0..255. */
  244. #ifdef HAVE_UNSIGNED_CHAR
  245. typedef unsigned char UINT8;
  246. #else /* not HAVE_UNSIGNED_CHAR */
  247. #ifdef CHAR_IS_UNSIGNED
  248. typedef char UINT8;
  249. #else /* not CHAR_IS_UNSIGNED */
  250. typedef short UINT8;
  251. #endif /* CHAR_IS_UNSIGNED */
  252. #endif /* HAVE_UNSIGNED_CHAR */
  253. /* UINT16 must hold at least the values 0..65535. */
  254. #ifdef HAVE_UNSIGNED_SHORT
  255. typedef unsigned short UINT16;
  256. #else /* not HAVE_UNSIGNED_SHORT */
  257. typedef unsigned int UINT16;
  258. #endif /* HAVE_UNSIGNED_SHORT */
  259. /* INT16 must hold at least the values -32768..32767. */
  260. #ifndef XMD_H /* X11/xmd.h correctly defines INT16 */
  261. typedef short INT16;
  262. #endif
  263. /* INT32 must hold at least signed 32-bit values. */
  264. #ifdef NEED_INT32 /* X11/xmd.h correctly defines INT32 */
  265. typedef long INT32;
  266. #endif
  267. /* Datatype used for image dimensions.  The JPEG standard only supports
  268.  * images up to 64K*64K due to 16-bit fields in SOF markers.  Therefore
  269.  * "unsigned int" is sufficient on all machines.  However, if you need to
  270.  * handle larger images and you don't mind deviating from the spec, you
  271.  * can change this datatype.
  272.  */
  273. typedef unsigned int JDIMENSION;
  274. #define JPEG_MAX_DIMENSION  65500L  /* a tad under 64K to prevent overflows */
  275. /* These macros are used in all function definitions and extern declarations.
  276.  * You could modify them if you need to change function linkage conventions;
  277.  * in particular, you'll need to do that to make the library a Windows DLL.
  278.  * Another application is to make all functions global for use with debuggers
  279.  * or code profilers that require it.
  280.  */
  281. /* a function called through method pointers: */
  282. #define METHODDEF(type) static type
  283. /* a function used only in its module: */
  284. #define LOCAL(type) static type
  285. /* a function referenced thru EXTERNs: */
  286. #define GLOBAL(type) type
  287. /* a reference to a GLOBAL function: */
  288. #define EXTERN(type) extern type
  289. /* This macro is used to declare a "method", that is, a function pointer.
  290.  * We want to supply prototype parameters if the compiler can cope.
  291.  * Note that the arglist parameter must be parenthesized!
  292.  * Again, you can customize this if you need special linkage keywords.
  293.  */
  294. #ifdef HAVE_PROTOTYPES
  295. #define JMETHOD(type,methodname,arglist)  type (*methodname) arglist
  296. #else
  297. #define JMETHOD(type,methodname,arglist)  type (*methodname) ()
  298. #endif
  299. /* Here is the pseudo-keyword for declaring pointers that must be "far"
  300.  * on 80x86 machines.  Most of the specialized coding for 80x86 is handled
  301.  * by just saying "FAR *" where such a pointer is needed.  In a few places
  302.  * explicit coding is needed; see uses of the NEED_FAR_POINTERS symbol.
  303.  */
  304. #ifdef NEED_FAR_POINTERS
  305. #define FAR  far
  306. #else
  307. //#define FAR
  308. #endif
  309. /*
  310.  * On a few systems, type boolean and/or its values FALSE, TRUE may appear
  311.  * in standard header files.  Or you may have conflicts with application-
  312.  * specific header files that you want to include together with these files.
  313.  * Defining HAVE_BOOLEAN before including jpeglib.h should make it work.
  314.  */
  315. #ifndef HAVE_BOOLEAN
  316. //typedef int boolean;
  317. #endif
  318. #ifndef FALSE /* in case these macros already exist */
  319. #define FALSE 0 /* values of boolean */
  320. #endif
  321. #ifndef TRUE
  322. #define TRUE 1
  323. #endif
  324. /*
  325.  * The remaining options affect code selection within the JPEG library,
  326.  * but they don't need to be visible to most applications using the library.
  327.  * To minimize application namespace pollution, the symbols won't be
  328.  * defined unless JPEG_INTERNALS or JPEG_INTERNAL_OPTIONS has been defined.
  329.  */
  330. #ifdef JPEG_INTERNALS
  331. #define JPEG_INTERNAL_OPTIONS
  332. #endif
  333. #ifdef JPEG_INTERNAL_OPTIONS
  334. /*
  335.  * These defines indicate whether to include various optional functions.
  336.  * Undefining some of these symbols will produce a smaller but less capable
  337.  * library.  Note that you can leave certain source files out of the
  338.  * compilation/linking process if you've #undef'd the corresponding symbols.
  339.  * (You may HAVE to do that if your compiler doesn't like null source files.)
  340.  */
  341. /* Arithmetic coding is unsupported for legal reasons.  Complaints to IBM. */
  342. /* Capability options common to encoder and decoder: */
  343. #define DCT_ISLOW_SUPPORTED /* slow but accurate integer algorithm */
  344. #define DCT_IFAST_SUPPORTED /* faster, less accurate integer method */
  345. #define DCT_FLOAT_SUPPORTED /* floating-point: accurate, fast on fast HW */
  346. /* Encoder capability options: */
  347. #undef  C_ARITH_CODING_SUPPORTED    /* Arithmetic coding back end? */
  348. #define C_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
  349. #define C_PROGRESSIVE_SUPPORTED     /* Progressive JPEG? (Requires MULTISCAN)*/
  350. #define ENTROPY_OPT_SUPPORTED     /* Optimization of entropy coding parms? */
  351. /* Note: if you selected 12-bit data precision, it is dangerous to turn off
  352.  * ENTROPY_OPT_SUPPORTED.  The standard Huffman tables are only good for 8-bit
  353.  * precision, so jchuff.c normally uses entropy optimization to compute
  354.  * usable tables for higher precision.  If you don't want to do optimization,
  355.  * you'll have to supply different default Huffman tables.
  356.  * The exact same statements apply for progressive JPEG: the default tables
  357.  * don't work for progressive mode.  (This may get fixed, however.)
  358.  */
  359. #define INPUT_SMOOTHING_SUPPORTED   /* Input image smoothing option? */
  360. /* Decoder capability options: */
  361. #undef  D_ARITH_CODING_SUPPORTED    /* Arithmetic coding back end? */
  362. #define D_MULTISCAN_FILES_SUPPORTED /* Multiple-scan JPEG files? */
  363. #define D_PROGRESSIVE_SUPPORTED     /* Progressive JPEG? (Requires MULTISCAN)*/
  364. #define SAVE_MARKERS_SUPPORTED     /* jpeg_save_markers() needed? */
  365. #define BLOCK_SMOOTHING_SUPPORTED   /* Block smoothing? (Progressive only) */
  366. #define IDCT_SCALING_SUPPORTED     /* Output rescaling via IDCT? */
  367. #undef  UPSAMPLE_SCALING_SUPPORTED  /* Output rescaling at upsample stage? */
  368. #define UPSAMPLE_MERGING_SUPPORTED  /* Fast path for sloppy upsampling? */
  369. #define QUANT_1PASS_SUPPORTED     /* 1-pass color quantization? */
  370. #define QUANT_2PASS_SUPPORTED     /* 2-pass color quantization? */
  371. /* more capability options later, no doubt */
  372. /*
  373.  * Ordering of RGB data in scanlines passed to or from the application.
  374.  * If your application wants to deal with data in the order B,G,R, just
  375.  * change these macros.  You can also deal with formats such as R,G,B,X
  376.  * (one extra byte per pixel) by changing RGB_PIXELSIZE.  Note that changing
  377.  * the offsets will also change the order in which colormap data is organized.
  378.  * RESTRICTIONS:
  379.  * 1. The sample applications cjpeg,djpeg do NOT support modified RGB formats.
  380.  * 2. These macros only affect RGB<=>YCbCr color conversion, so they are not
  381.  *    useful if you are using JPEG color spaces other than YCbCr or grayscale.
  382.  * 3. The color quantizer modules will not behave desirably if RGB_PIXELSIZE
  383.  *    is not 3 (they don't understand about dummy color components!).  So you
  384.  *    can't use color quantization if you change that value.
  385.  */
  386. #define RGB_RED 0 /* Offset of Red in an RGB scanline element */
  387. #define RGB_GREEN 1 /* Offset of Green */
  388. #define RGB_BLUE 2 /* Offset of Blue */
  389. #define RGB_PIXELSIZE 3 /* JSAMPLEs per RGB scanline element */
  390. /* Definitions for speed-related optimizations. */
  391. /* If your compiler supports inline functions, define INLINE
  392.  * as the inline keyword; otherwise define it as empty.
  393.  */
  394. #ifndef INLINE
  395. #ifdef __GNUC__ /* for instance, GNU C knows about inline */
  396. #define INLINE __inline__
  397. #endif
  398. #ifndef INLINE
  399. #define INLINE /* default is to define it as empty */
  400. #endif
  401. #endif
  402. /* On some machines (notably 68000 series) "int" is 32 bits, but multiplying
  403.  * two 16-bit shorts is faster than multiplying two ints.  Define MULTIPLIER
  404.  * as short on such a machine.  MULTIPLIER must be at least 16 bits wide.
  405.  */
  406. #ifndef MULTIPLIER
  407. #define MULTIPLIER  int /* type for fastest integer multiply */
  408. #endif
  409. /* FAST_FLOAT should be either float or double, whichever is done faster
  410.  * by your compiler.  (Note that this type is only used in the floating point
  411.  * DCT routines, so it only matters if you've defined DCT_FLOAT_SUPPORTED.)
  412.  * Typically, float is faster in ANSI C compilers, while double is faster in
  413.  * pre-ANSI compilers (because they insist on converting to double anyway).
  414.  * The code below therefore chooses float if we have ANSI-style prototypes.
  415.  */
  416. #ifndef FAST_FLOAT
  417. #ifdef HAVE_PROTOTYPES
  418. #define FAST_FLOAT  float
  419. #else
  420. #define FAST_FLOAT  double
  421. #endif
  422. #endif
  423. #endif /* JPEG_INTERNAL_OPTIONS */
  424. #if defined(__cplusplus)
  425. extern "C" {
  426. #endif
  427. /* Version ID for the JPEG library.
  428.  * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60".
  429.  */
  430. #define JPEG_LIB_VERSION  62 /* Version 6b */
  431. /* Various constants determining the sizes of things.
  432.  * All of these are specified by the JPEG standard, so don't change them
  433.  * if you want to be compatible.
  434.  */
  435. #define DCTSIZE     8 /* The basic DCT block is 8x8 samples */
  436. #define DCTSIZE2     64 /* DCTSIZE squared; # of elements in a block */
  437. #define NUM_QUANT_TBLS      4 /* Quantization tables are numbered 0..3 */
  438. #define NUM_HUFF_TBLS       4 /* Huffman tables are numbered 0..3 */
  439. #define NUM_ARITH_TBLS      16 /* Arith-coding tables are numbered 0..15 */
  440. #define MAX_COMPS_IN_SCAN   4 /* JPEG limit on # of components in one scan */
  441. #define MAX_SAMP_FACTOR     4 /* JPEG limit on sampling factors */
  442. /* Unfortunately, some bozo at Adobe saw no reason to be bound by the standard;
  443.  * the PostScript DCT filter can emit files with many more than 10 blocks/MCU.
  444.  * If you happen to run across such a file, you can up D_MAX_BLOCKS_IN_MCU
  445.  * to handle it.  We even let you do this from the jconfig.h file.  However,
  446.  * we strongly discourage changing C_MAX_BLOCKS_IN_MCU; just because Adobe
  447.  * sometimes emits noncompliant files doesn't mean you should too.
  448.  */
  449. #define C_MAX_BLOCKS_IN_MCU   10 /* compressor's limit on blocks per MCU */
  450. #ifndef D_MAX_BLOCKS_IN_MCU
  451. #define D_MAX_BLOCKS_IN_MCU   10 /* decompressor's limit on blocks per MCU */
  452. #endif
  453. /* Data structures for images (arrays of samples and of DCT coefficients).
  454.  * On 80x86 machines, the image arrays are too big for near pointers,
  455.  * but the pointer arrays can fit in near memory.
  456.  */
  457. typedef JSAMPLE FAR *JSAMPROW; /* ptr to one image row of pixel samples. */
  458. typedef JSAMPROW *JSAMPARRAY; /* ptr to some rows (a 2-D sample array) */
  459. typedef JSAMPARRAY *JSAMPIMAGE; /* a 3-D sample array: top index is color */
  460. typedef JCOEF JBLOCK[DCTSIZE2]; /* one block of coefficients */
  461. typedef JBLOCK FAR *JBLOCKROW; /* pointer to one row of coefficient blocks */
  462. typedef JBLOCKROW *JBLOCKARRAY; /* a 2-D array of coefficient blocks */
  463. typedef JBLOCKARRAY *JBLOCKIMAGE; /* a 3-D array of coefficient blocks */
  464. typedef JCOEF FAR *JCOEFPTR; /* useful in a couple of places */
  465. /* Types for JPEG compression parameters and working tables. */
  466. /* DCT coefficient quantization tables. */
  467. typedef struct {
  468.   /* This array gives the coefficient quantizers in natural array order
  469.    * (not the zigzag order in which they are stored in a JPEG DQT marker).
  470.    * CAUTION: IJG versions prior to v6a kept this array in zigzag order.
  471.    */
  472.   UINT16 quantval[DCTSIZE2]; /* quantization step for each coefficient */
  473.   /* This field is used only during compression.  It's initialized FALSE when
  474.    * the table is created, and set TRUE when it's been output to the file.
  475.    * You could suppress output of a table by setting this to TRUE.
  476.    * (See jpeg_suppress_tables for an example.)
  477.    */
  478.   boolean sent_table; /* TRUE when table has been output */
  479. } JQUANT_TBL;
  480. /* Huffman coding tables. */
  481. typedef struct {
  482.   /* These two fields directly represent the contents of a JPEG DHT marker */
  483.   UINT8 bits[17]; /* bits[k] = # of symbols with codes of */
  484. /* length k bits; bits[0] is unused */
  485.   UINT8 huffval[256]; /* The symbols, in order of incr code length */
  486.   /* This field is used only during compression.  It's initialized FALSE when
  487.    * the table is created, and set TRUE when it's been output to the file.
  488.    * You could suppress output of a table by setting this to TRUE.
  489.    * (See jpeg_suppress_tables for an example.)
  490.    */
  491.   boolean sent_table; /* TRUE when table has been output */
  492. } JHUFF_TBL;
  493. /* Basic info about one component (color channel). */
  494. typedef struct {
  495.   /* These values are fixed over the whole image. */
  496.   /* For compression, they must be supplied by parameter setup; */
  497.   /* for decompression, they are read from the SOF marker. */
  498.   int component_id; /* identifier for this component (0..255) */
  499.   int component_index; /* its index in SOF or cinfo->comp_info[] */
  500.   int h_samp_factor; /* horizontal sampling factor (1..4) */
  501.   int v_samp_factor; /* vertical sampling factor (1..4) */
  502.   int quant_tbl_no; /* quantization table selector (0..3) */
  503.   /* These values may vary between scans. */
  504.   /* For compression, they must be supplied by parameter setup; */
  505.   /* for decompression, they are read from the SOS marker. */
  506.   /* The decompressor output side may not use these variables. */
  507.   int dc_tbl_no; /* DC entropy table selector (0..3) */
  508.   int ac_tbl_no; /* AC entropy table selector (0..3) */
  509.   
  510.   /* Remaining fields should be treated as private by applications. */
  511.   
  512.   /* These values are computed during compression or decompression startup: */
  513.   /* Component's size in DCT blocks.
  514.    * Any dummy blocks added to complete an MCU are not counted; therefore
  515.    * these values do not depend on whether a scan is interleaved or not.
  516.    */
  517.   JDIMENSION width_in_blocks;
  518.   JDIMENSION height_in_blocks;
  519.   /* Size of a DCT block in samples.  Always DCTSIZE for compression.
  520.    * For decompression this is the size of the output from one DCT block,
  521.    * reflecting any scaling we choose to apply during the IDCT step.
  522.    * Values of 1,2,4,8 are likely to be supported.  Note that different
  523.    * components may receive different IDCT scalings.
  524.    */
  525.   int DCT_scaled_size;
  526.   /* The downsampled dimensions are the component's actual, unpadded number
  527.    * of samples at the main buffer (preprocessing/compression interface), thus
  528.    * downsampled_width = ceil(image_width * Hi/Hmax)
  529.    * and similarly for height.  For decompression, IDCT scaling is included, so
  530.    * downsampled_width = ceil(image_width * Hi/Hmax * DCT_scaled_size/DCTSIZE)
  531.    */
  532.   JDIMENSION downsampled_width;  /* actual width in samples */
  533.   JDIMENSION downsampled_height; /* actual height in samples */
  534.   /* This flag is used only for decompression.  In cases where some of the
  535.    * components will be ignored (eg grayscale output from YCbCr image),
  536.    * we can skip most computations for the unused components.
  537.    */
  538.   boolean component_needed; /* do we need the value of this component? */
  539.   /* These values are computed before starting a scan of the component. */
  540.   /* The decompressor output side may not use these variables. */
  541.   int MCU_width; /* number of blocks per MCU, horizontally */
  542.   int MCU_height; /* number of blocks per MCU, vertically */
  543.   int MCU_blocks; /* MCU_width * MCU_height */
  544.   int MCU_sample_width; /* MCU width in samples, MCU_width*DCT_scaled_size */
  545.   int last_col_width; /* # of non-dummy blocks across in last MCU */
  546.   int last_row_height; /* # of non-dummy blocks down in last MCU */
  547.   /* Saved quantization table for component; NULL if none yet saved.
  548.    * See jdinput.c comments about the need for this information.
  549.    * This field is currently used only for decompression.
  550.    */
  551.   JQUANT_TBL * quant_table;
  552.   /* Private per-component storage for DCT or IDCT subsystem. */
  553.   void * dct_table;
  554. } jpeg_component_info;
  555. /* The script for encoding a multiple-scan file is an array of these: */
  556. typedef struct {
  557.   int comps_in_scan; /* number of components encoded in this scan */
  558.   int component_index[MAX_COMPS_IN_SCAN]; /* their SOF/comp_info[] indexes */
  559.   int Ss, Se; /* progressive JPEG spectral selection parms */
  560.   int Ah, Al; /* progressive JPEG successive approx. parms */
  561. } jpeg_scan_info;
  562. /* The decompressor can save APPn and COM markers in a list of these: */
  563. typedef struct jpeg_marker_struct FAR * jpeg_saved_marker_ptr;
  564. struct jpeg_marker_struct {
  565.   jpeg_saved_marker_ptr next; /* next in list, or NULL */
  566.   UINT8 marker; /* marker code: JPEG_COM, or JPEG_APP0+n */
  567.   unsigned int original_length; /* # bytes of data in the file */
  568.   unsigned int data_length; /* # bytes of data saved at data[] */
  569.   JOCTET FAR * data; /* the data contained in the marker */
  570.   /* the marker length word is not counted in data_length or original_length */
  571. };
  572. /* Known color spaces. */
  573. typedef enum {
  574. JCS_UNKNOWN, /* error/unspecified */
  575. JCS_GRAYSCALE, /* monochrome */
  576. JCS_RGB, /* red/green/blue */
  577. JCS_YCbCr, /* Y/Cb/Cr (also known as YUV) */
  578. JCS_CMYK, /* C/M/Y/K */
  579. JCS_YCCK /* Y/Cb/Cr/K */
  580. } J_COLOR_SPACE;
  581. /* DCT/IDCT algorithm options. */
  582. typedef enum {
  583. JDCT_ISLOW, /* slow but accurate integer algorithm */
  584. JDCT_IFAST, /* faster, less accurate integer method */
  585. JDCT_FLOAT /* floating-point: accurate, fast on fast HW */
  586. } J_DCT_METHOD;
  587. #ifndef JDCT_DEFAULT /* may be overridden in jconfig.h */
  588. #define JDCT_DEFAULT  JDCT_ISLOW
  589. #endif
  590. #ifndef JDCT_FASTEST /* may be overridden in jconfig.h */
  591. #define JDCT_FASTEST  JDCT_IFAST
  592. #endif
  593. /* Dithering options for decompression. */
  594. typedef enum {
  595. JDITHER_NONE, /* no dithering */
  596. JDITHER_ORDERED, /* simple ordered dither */
  597. JDITHER_FS /* Floyd-Steinberg error diffusion dither */
  598. } J_DITHER_MODE;
  599. /* Common fields between JPEG compression and decompression master structs. */
  600. #define jpeg_common_fields 
  601.   struct jpeg_error_mgr * err; /* Error handler module */
  602.   struct jpeg_memory_mgr * mem; /* Memory manager module */
  603.   struct jpeg_progress_mgr * progress; /* Progress monitor, or NULL if none */
  604.   void * client_data; /* Available for use by application */
  605.   boolean is_decompressor; /* So common code can tell which is which */
  606.   int global_state /* For checking call sequence validity */
  607. /* Routines that are to be used by both halves of the library are declared
  608.  * to receive a pointer to this structure.  There are no actual instances of
  609.  * jpeg_common_struct, only of jpeg_compress_struct and jpeg_decompress_struct.
  610.  */
  611. struct jpeg_common_struct {
  612.   jpeg_common_fields; /* Fields common to both master struct types */
  613.   /* Additional fields follow in an actual jpeg_compress_struct or
  614.    * jpeg_decompress_struct.  All three structs must agree on these
  615.    * initial fields!  (This would be a lot cleaner in C++.)
  616.    */
  617. };
  618. typedef struct jpeg_common_struct * j_common_ptr;
  619. typedef struct jpeg_compress_struct * j_compress_ptr;
  620. typedef struct jpeg_decompress_struct * j_decompress_ptr;
  621. /* Master record for a compression instance */
  622. struct jpeg_compress_struct 
  623. {
  624.   jpeg_common_fields; /* Fields shared with jpeg_decompress_struct */
  625.   /* Destination for compressed data */
  626.   struct jpeg_destination_mgr * dest;
  627.   /* Description of source image --- these fields must be filled in by
  628.    * outer application before starting compression.  in_color_space must
  629.    * be correct before you can even call jpeg_set_defaults().
  630.    */
  631.   JDIMENSION image_width; /* input image width */
  632.   JDIMENSION image_height; /* input image height */
  633.   int input_components; /* # of color components in input image */
  634.   J_COLOR_SPACE in_color_space; /* colorspace of input image */
  635.   double input_gamma; /* image gamma of input image */
  636.   /* Compression parameters --- these fields must be set before calling
  637.    * jpeg_start_compress().  We recommend calling jpeg_set_defaults() to
  638.    * initialize everything to reasonable defaults, then changing anything
  639.    * the application specifically wants to change.  That way you won't get
  640.    * burnt when new parameters are added.  Also note that there are several
  641.    * helper routines to simplify changing parameters.
  642.    */
  643.   int data_precision; /* bits of precision in image data */
  644.   int num_components; /* # of color components in JPEG image */
  645.   J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */
  646.   jpeg_component_info * comp_info;
  647.   /* comp_info[i] describes component that appears i'th in SOF */
  648.   
  649.   JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS];
  650.   /* ptrs to coefficient quantization tables, or NULL if not defined */
  651.   
  652.   JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  653.   JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  654.   /* ptrs to Huffman coding tables, or NULL if not defined */
  655.   
  656.   UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
  657.   UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
  658.   UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
  659.   int num_scans; /* # of entries in scan_info array */
  660.   const jpeg_scan_info * scan_info; /* script for multi-scan file, or NULL */
  661.   /* The default value of scan_info is NULL, which causes a single-scan
  662.    * sequential JPEG file to be emitted.  To create a multi-scan file,
  663.    * set num_scans and scan_info to point to an array of scan definitions.
  664.    */
  665.   boolean raw_data_in; /* TRUE=caller supplies downsampled data */
  666.   boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */
  667.   boolean optimize_coding; /* TRUE=optimize entropy encoding parms */
  668.   boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  669.   int smoothing_factor; /* 1..100, or 0 for no input smoothing */
  670.   J_DCT_METHOD dct_method; /* DCT algorithm selector */
  671.   /* The restart interval can be specified in absolute MCUs by setting
  672.    * restart_interval, or in MCU rows by setting restart_in_rows
  673.    * (in which case the correct restart_interval will be figured
  674.    * for each scan).
  675.    */
  676.   unsigned int restart_interval; /* MCUs per restart, or 0 for no restart */
  677.   int restart_in_rows; /* if > 0, MCU rows per restart interval */
  678.   /* Parameters controlling emission of special markers. */
  679.   boolean write_JFIF_header; /* should a JFIF marker be written? */
  680.   UINT8 JFIF_major_version; /* What to write for the JFIF version number */
  681.   UINT8 JFIF_minor_version;
  682.   /* These three values are not used by the JPEG code, merely copied */
  683.   /* into the JFIF APP0 marker.  density_unit can be 0 for unknown, */
  684.   /* 1 for dots/inch, or 2 for dots/cm.  Note that the pixel aspect */
  685.   /* ratio is defined by X_density/Y_density even when density_unit=0. */
  686.   UINT8 density_unit; /* JFIF code for pixel size units */
  687.   UINT16 X_density; /* Horizontal pixel density */
  688.   UINT16 Y_density; /* Vertical pixel density */
  689.   boolean write_Adobe_marker; /* should an Adobe marker be written? */
  690.   
  691.   /* State variable: index of next scanline to be written to
  692.    * jpeg_write_scanlines().  Application may use this to control its
  693.    * processing loop, e.g., "while (next_scanline < image_height)".
  694.    */
  695.   JDIMENSION next_scanline; /* 0 .. image_height-1  */
  696.   /* Remaining fields are known throughout compressor, but generally
  697.    * should not be touched by a surrounding application.
  698.    */
  699.   /*
  700.    * These fields are computed during compression startup
  701.    */
  702.   boolean progressive_mode; /* TRUE if scan script uses progressive mode */
  703.   int max_h_samp_factor; /* largest h_samp_factor */
  704.   int max_v_samp_factor; /* largest v_samp_factor */
  705.   JDIMENSION total_iMCU_rows; /* # of iMCU rows to be input to coef ctlr */
  706.   /* The coefficient controller receives data in units of MCU rows as defined
  707.    * for fully interleaved scans (whether the JPEG file is interleaved or not).
  708.    * There are v_samp_factor * DCTSIZE sample rows of each component in an
  709.    * "iMCU" (interleaved MCU) row.
  710.    */
  711.   
  712.   /*
  713.    * These fields are valid during any one scan.
  714.    * They describe the components and MCUs actually appearing in the scan.
  715.    */
  716.   int comps_in_scan; /* # of JPEG components in this scan */
  717.   jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  718.   /* *cur_comp_info[i] describes component that appears i'th in SOS */
  719.   
  720.   JDIMENSION MCUs_per_row; /* # of MCUs across the image */
  721.   JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */
  722.   
  723.   int blocks_in_MCU; /* # of DCT blocks per MCU */
  724.   int MCU_membership[C_MAX_BLOCKS_IN_MCU];
  725.   /* MCU_membership[i] is index in cur_comp_info of component owning */
  726.   /* i'th block in an MCU */
  727.   int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */
  728.   /*
  729.    * Links to compression subobjects (methods and private variables of modules)
  730.    */
  731.   struct jpeg_comp_master * master;
  732.   struct jpeg_c_main_controller * main;
  733.   struct jpeg_c_prep_controller * prep;
  734.   struct jpeg_c_coef_controller * coef;
  735.   struct jpeg_marker_writer * marker;
  736.   struct jpeg_color_converter * cconvert;
  737.   struct jpeg_downsampler * downsample;
  738.   struct jpeg_forward_dct * fdct;
  739.   struct jpeg_entropy_encoder * entropy;
  740.   jpeg_scan_info * script_space; /* workspace for jpeg_simple_progression */
  741.   int script_space_size;
  742. };
  743. /* Master record for a decompression instance */
  744. struct jpeg_decompress_struct 
  745. {
  746.   jpeg_common_fields; /* Fields shared with jpeg_compress_struct */
  747.   /* Source of compressed data */
  748.   struct jpeg_source_mgr * src;
  749.   /* Basic description of image --- filled in by jpeg_read_header(). */
  750.   /* Application may inspect these values to decide how to process image. */
  751.   JDIMENSION image_width; /* nominal image width (from SOF marker) */
  752.   JDIMENSION image_height; /* nominal image height */
  753.   int num_components; /* # of color components in JPEG image */
  754.   J_COLOR_SPACE jpeg_color_space; /* colorspace of JPEG image */
  755.   /* Decompression processing parameters --- these fields must be set before
  756.    * calling jpeg_start_decompress().  Note that jpeg_read_header() initializes
  757.    * them to default values.
  758.    */
  759.   J_COLOR_SPACE out_color_space; /* colorspace for output */
  760.   unsigned int scale_num, scale_denom; /* fraction by which to scale image */
  761.   double output_gamma; /* image gamma wanted in output */
  762.   boolean buffered_image; /* TRUE=multiple output passes */
  763.   boolean raw_data_out; /* TRUE=downsampled data wanted */
  764.   J_DCT_METHOD dct_method; /* IDCT algorithm selector */
  765.   boolean do_fancy_upsampling; /* TRUE=apply fancy upsampling */
  766.   boolean do_block_smoothing; /* TRUE=apply interblock smoothing */
  767.   boolean quantize_colors; /* TRUE=colormapped output wanted */
  768.   /* the following are ignored if not quantize_colors: */
  769.   J_DITHER_MODE dither_mode; /* type of color dithering to use */
  770.   boolean two_pass_quantize; /* TRUE=use two-pass color quantization */
  771.   int desired_number_of_colors; /* max # colors to use in created colormap */
  772.   /* these are significant only in buffered-image mode: */
  773.   boolean enable_1pass_quant; /* enable future use of 1-pass quantizer */
  774.   boolean enable_external_quant;/* enable future use of external colormap */
  775.   boolean enable_2pass_quant; /* enable future use of 2-pass quantizer */
  776.   /* Description of actual output image that will be returned to application.
  777.    * These fields are computed by jpeg_start_decompress().
  778.    * You can also use jpeg_calc_output_dimensions() to determine these values
  779.    * in advance of calling jpeg_start_decompress().
  780.    */
  781.   JDIMENSION output_width; /* scaled image width */
  782.   JDIMENSION output_height; /* scaled image height */
  783.   int out_color_components; /* # of color components in out_color_space */
  784.   int output_components; /* # of color components returned */
  785.   /* output_components is 1 (a colormap index) when quantizing colors;
  786.    * otherwise it equals out_color_components.
  787.    */
  788.   int rec_outbuf_height; /* min recommended height of scanline buffer */
  789.   /* If the buffer passed to jpeg_read_scanlines() is less than this many rows
  790.    * high, space and time will be wasted due to unnecessary data copying.
  791.    * Usually rec_outbuf_height will be 1 or 2, at most 4.
  792.    */
  793.   /* When quantizing colors, the output colormap is described by these fields.
  794.    * The application can supply a colormap by setting colormap non-NULL before
  795.    * calling jpeg_start_decompress; otherwise a colormap is created during
  796.    * jpeg_start_decompress or jpeg_start_output.
  797.    * The map has out_color_components rows and actual_number_of_colors columns.
  798.    */
  799.   int actual_number_of_colors; /* number of entries in use */
  800.   JSAMPARRAY colormap; /* The color map as a 2-D pixel array */
  801.   /* State variables: these variables indicate the progress of decompression.
  802.    * The application may examine these but must not modify them.
  803.    */
  804.   /* Row index of next scanline to be read from jpeg_read_scanlines().
  805.    * Application may use this to control its processing loop, e.g.,
  806.    * "while (output_scanline < output_height)".
  807.    */
  808.   JDIMENSION output_scanline; /* 0 .. output_height-1  */
  809.   /* Current input scan number and number of iMCU rows completed in scan.
  810.    * These indicate the progress of the decompressor input side.
  811.    */
  812.   int input_scan_number; /* Number of SOS markers seen so far */
  813.   JDIMENSION input_iMCU_row; /* Number of iMCU rows completed */
  814.   /* The "output scan number" is the notional scan being displayed by the
  815.    * output side.  The decompressor will not allow output scan/row number
  816.    * to get ahead of input scan/row, but it can fall arbitrarily far behind.
  817.    */
  818.   int output_scan_number; /* Nominal scan number being displayed */
  819.   JDIMENSION output_iMCU_row; /* Number of iMCU rows read */
  820.   /* Current progression status.  coef_bits[c][i] indicates the precision
  821.    * with which component c's DCT coefficient i (in zigzag order) is known.
  822.    * It is -1 when no data has yet been received, otherwise it is the point
  823.    * transform (shift) value for the most recent scan of the coefficient
  824.    * (thus, 0 at completion of the progression).
  825.    * This pointer is NULL when reading a non-progressive file.
  826.    */
  827.   int (*coef_bits)[DCTSIZE2]; /* -1 or current Al value for each coef */
  828.   /* Internal JPEG parameters --- the application usually need not look at
  829.    * these fields.  Note that the decompressor output side may not use
  830.    * any parameters that can change between scans.
  831.    */
  832.   /* Quantization and Huffman tables are carried forward across input
  833.    * datastreams when processing abbreviated JPEG datastreams.
  834.    */
  835.   JQUANT_TBL * quant_tbl_ptrs[NUM_QUANT_TBLS];
  836.   /* ptrs to coefficient quantization tables, or NULL if not defined */
  837.   JHUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  838.   JHUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  839.   /* ptrs to Huffman coding tables, or NULL if not defined */
  840.   /* These parameters are never carried across datastreams, since they
  841.    * are given in SOF/SOS markers or defined to be reset by SOI.
  842.    */
  843.   int data_precision; /* bits of precision in image data */
  844.   jpeg_component_info * comp_info;
  845.   /* comp_info[i] describes component that appears i'th in SOF */
  846.   boolean progressive_mode; /* TRUE if SOFn specifies progressive mode */
  847.   boolean arith_code; /* TRUE=arithmetic coding, FALSE=Huffman */
  848.   UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
  849.   UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
  850.   UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
  851.   unsigned int restart_interval; /* MCUs per restart interval, or 0 for no restart */
  852.   /* These fields record data obtained from optional markers recognized by
  853.    * the JPEG library.
  854.    */
  855.   boolean saw_JFIF_marker; /* TRUE iff a JFIF APP0 marker was found */
  856.   /* Data copied from JFIF marker; only valid if saw_JFIF_marker is TRUE: */
  857.   UINT8 JFIF_major_version; /* JFIF version number */
  858.   UINT8 JFIF_minor_version;
  859.   UINT8 density_unit; /* JFIF code for pixel size units */
  860.   UINT16 X_density; /* Horizontal pixel density */
  861.   UINT16 Y_density; /* Vertical pixel density */
  862.   boolean saw_Adobe_marker; /* TRUE iff an Adobe APP14 marker was found */
  863.   UINT8 Adobe_transform; /* Color transform code from Adobe marker */
  864.   boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  865.   /* Aside from the specific data retained from APPn markers known to the
  866.    * library, the uninterpreted contents of any or all APPn and COM markers
  867.    * can be saved in a list for examination by the application.
  868.    */
  869.   jpeg_saved_marker_ptr marker_list; /* Head of list of saved markers */
  870.   /* Remaining fields are known throughout decompressor, but generally
  871.    * should not be touched by a surrounding application.
  872.    */
  873.   /*
  874.    * These fields are computed during decompression startup
  875.    */
  876.   int max_h_samp_factor; /* largest h_samp_factor */
  877.   int max_v_samp_factor; /* largest v_samp_factor */
  878.   int min_DCT_scaled_size; /* smallest DCT_scaled_size of any component */
  879.   JDIMENSION total_iMCU_rows; /* # of iMCU rows in image */
  880.   /* The coefficient controller's input and output progress is measured in
  881.    * units of "iMCU" (interleaved MCU) rows.  These are the same as MCU rows
  882.    * in fully interleaved JPEG scans, but are used whether the scan is
  883.    * interleaved or not.  We define an iMCU row as v_samp_factor DCT block
  884.    * rows of each component.  Therefore, the IDCT output contains
  885.    * v_samp_factor*DCT_scaled_size sample rows of a component per iMCU row.
  886.    */
  887.   JSAMPLE * sample_range_limit; /* table for fast range-limiting */
  888.   /*
  889.    * These fields are valid during any one scan.
  890.    * They describe the components and MCUs actually appearing in the scan.
  891.    * Note that the decompressor output side must not use these fields.
  892.    */
  893.   int comps_in_scan; /* # of JPEG components in this scan */
  894.   jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  895.   /* *cur_comp_info[i] describes component that appears i'th in SOS */
  896.   JDIMENSION MCUs_per_row; /* # of MCUs across the image */
  897.   JDIMENSION MCU_rows_in_scan; /* # of MCU rows in the image */
  898.   int blocks_in_MCU; /* # of DCT blocks per MCU */
  899.   int MCU_membership[D_MAX_BLOCKS_IN_MCU];
  900.   /* MCU_membership[i] is index in cur_comp_info of component owning */
  901.   /* i'th block in an MCU */
  902.   int Ss, Se, Ah, Al; /* progressive JPEG parameters for scan */
  903.   /* This field is shared between entropy decoder and marker parser.
  904.    * It is either zero or the code of a JPEG marker that has been
  905.    * read from the data source, but has not yet been processed.
  906.    */
  907.   int unread_marker;
  908.   /*
  909.    * Links to decompression subobjects (methods, private variables of modules)
  910.    */
  911.   struct jpeg_decomp_master * master;
  912.   struct jpeg_d_main_controller * main;
  913.   struct jpeg_d_coef_controller * coef;
  914.   struct jpeg_d_post_controller * post;
  915.   struct jpeg_input_controller * inputctl;
  916.   struct jpeg_marker_reader * marker;
  917.   struct jpeg_entropy_decoder * entropy;
  918.   struct jpeg_inverse_dct * idct;
  919.   struct jpeg_upsampler * upsample;
  920.   struct jpeg_color_deconverter * cconvert;
  921.   struct jpeg_color_quantizer * cquantize;
  922. };
  923. /* "Object" declarations for JPEG modules that may be supplied or called
  924.  * directly by the surrounding application.
  925.  * As with all objects in the JPEG library, these structs only define the
  926.  * publicly visible methods and state variables of a module.  Additional
  927.  * private fields may exist after the public ones.
  928.  */
  929. /* Error handler object */
  930. struct jpeg_error_mgr {
  931.   /* Error exit handler: does not return to caller */
  932.   JMETHOD(void, error_exit, (j_common_ptr cinfo));
  933.   /* Conditionally emit a trace or warning message */
  934.   JMETHOD(void, emit_message, (j_common_ptr cinfo, int msg_level));
  935.   /* Routine that actually outputs a trace or error message */
  936.   JMETHOD(void, output_message, (j_common_ptr cinfo));
  937.   /* Format a message string for the most recent JPEG error or message */
  938.   JMETHOD(void, format_message, (j_common_ptr cinfo, char * buffer));
  939. #define JMSG_LENGTH_MAX  200 /* recommended size of format_message buffer */
  940.   /* Reset error state variables at start of a new image */
  941.   JMETHOD(void, reset_error_mgr, (j_common_ptr cinfo));
  942.   
  943.   /* The message ID code and any parameters are saved here.
  944.    * A message can have one string parameter or up to 8 int parameters.
  945.    */
  946.   int msg_code;
  947. #define JMSG_STR_PARM_MAX  80
  948.   union {
  949.     int i[8];
  950.     char s[JMSG_STR_PARM_MAX];
  951.   } msg_parm;
  952.   
  953.   /* Standard state variables for error facility */
  954.   
  955.   int trace_level; /* max msg_level that will be displayed */
  956.   
  957.   /* For recoverable corrupt-data errors, we emit a warning message,
  958.    * but keep going unless emit_message chooses to abort.  emit_message
  959.    * should count warnings in num_warnings.  The surrounding application
  960.    * can check for bad data by seeing if num_warnings is nonzero at the
  961.    * end of processing.
  962.    */
  963.   long num_warnings; /* number of corrupt-data warnings */
  964.   /* These fields point to the table(s) of error message strings.
  965.    * An application can change the table pointer to switch to a different
  966.    * message list (typically, to change the language in which errors are
  967.    * reported).  Some applications may wish to add additional error codes
  968.    * that will be handled by the JPEG library error mechanism; the second
  969.    * table pointer is used for this purpose.
  970.    *
  971.    * First table includes all errors generated by JPEG library itself.
  972.    * Error code 0 is reserved for a "no such error string" message.
  973.    */
  974.   const char * const * jpeg_message_table; /* Library errors */
  975.   int last_jpeg_message;    /* Table contains strings 0..last_jpeg_message */
  976.   /* Second table can be added by application (see cjpeg/djpeg for example).
  977.    * It contains strings numbered first_addon_message..last_addon_message.
  978.    */
  979.   const char * const * addon_message_table; /* Non-library errors */
  980.   int first_addon_message; /* code for first string in addon table */
  981.   int last_addon_message; /* code for last string in addon table */
  982. };
  983. /* Progress monitor object */
  984. struct jpeg_progress_mgr {
  985.   JMETHOD(void, progress_monitor, (j_common_ptr cinfo));
  986.   long pass_counter; /* work units completed in this pass */
  987.   long pass_limit; /* total number of work units in this pass */
  988.   int completed_passes; /* passes completed so far */
  989.   int total_passes; /* total number of passes expected */
  990. };
  991. /* Data destination object for compression */
  992. struct jpeg_destination_mgr {
  993.   JOCTET * next_output_byte; /* => next byte to write in buffer */
  994.   size_t free_in_buffer; /* # of byte spaces remaining in buffer */
  995.   JMETHOD(void, init_destination, (j_compress_ptr cinfo));
  996.   JMETHOD(boolean, empty_output_buffer, (j_compress_ptr cinfo));
  997.   JMETHOD(void, term_destination, (j_compress_ptr cinfo));
  998. };
  999. /* Data source object for decompression */
  1000. typedef struct jpeg_source_mgr 
  1001. {
  1002.   FILE * infile; /* source stream */
  1003.   JOCTET * buffer; /* start of buffer */
  1004.   boolean start_of_file; /* have we gotten any data yet? */
  1005.   
  1006.   const JOCTET * next_input_byte; /* => next byte to read from buffer */
  1007.   size_t bytes_in_buffer; /* # of bytes remaining in buffer */
  1008.   JMETHOD(void, init_source, (j_decompress_ptr cinfo));
  1009.   JMETHOD(boolean, fill_input_buffer, (j_decompress_ptr cinfo));
  1010.   JMETHOD(void, skip_input_data, (j_decompress_ptr cinfo, long num_bytes));
  1011.   JMETHOD(boolean, resync_to_restart, (j_decompress_ptr cinfo, int desired));
  1012.   JMETHOD(void, term_source, (j_decompress_ptr cinfo));
  1013. } jpeg_source_mgr;
  1014. /* Memory manager object.
  1015.  * Allocates "small" objects (a few K total), "large" objects (tens of K),
  1016.  * and "really big" objects (virtual arrays with backing store if needed).
  1017.  * The memory manager does not allow individual objects to be freed; rather,
  1018.  * each created object is assigned to a pool, and whole pools can be freed
  1019.  * at once.  This is faster and more convenient than remembering exactly what
  1020.  * to free, especially where malloc()/free() are not too speedy.
  1021.  * NB: alloc routines never return NULL.  They exit to error_exit if not
  1022.  * successful.
  1023.  */
  1024. #define JPOOL_PERMANENT 0 /* lasts until master record is destroyed */
  1025. #define JPOOL_IMAGE 1 /* lasts until done with image/datastream */
  1026. #define JPOOL_NUMPOOLS 2
  1027. typedef struct jvirt_sarray_control * jvirt_sarray_ptr;
  1028. typedef struct jvirt_barray_control * jvirt_barray_ptr;
  1029. struct jpeg_memory_mgr {
  1030.   /* Method pointers */
  1031.   JMETHOD(void *, alloc_small, (j_common_ptr cinfo, int pool_id,
  1032. size_t sizeofobject));
  1033.   JMETHOD(void FAR *, alloc_large, (j_common_ptr cinfo, int pool_id,
  1034.      size_t sizeofobject));
  1035.   JMETHOD(JSAMPARRAY, alloc_sarray, (j_common_ptr cinfo, int pool_id,
  1036.      JDIMENSION samplesperrow,
  1037.      JDIMENSION numrows));
  1038.   JMETHOD(JBLOCKARRAY, alloc_barray, (j_common_ptr cinfo, int pool_id,
  1039.       JDIMENSION blocksperrow,
  1040.       JDIMENSION numrows));
  1041.   JMETHOD(jvirt_sarray_ptr, request_virt_sarray, (j_common_ptr cinfo,
  1042.   int pool_id,
  1043.   boolean pre_zero,
  1044.   JDIMENSION samplesperrow,
  1045.   JDIMENSION numrows,
  1046.   JDIMENSION maxaccess));
  1047.   JMETHOD(jvirt_barray_ptr, request_virt_barray, (j_common_ptr cinfo,
  1048.   int pool_id,
  1049.   boolean pre_zero,
  1050.   JDIMENSION blocksperrow,
  1051.   JDIMENSION numrows,
  1052.   JDIMENSION maxaccess));
  1053.   JMETHOD(void, realize_virt_arrays, (j_common_ptr cinfo));
  1054.   JMETHOD(JSAMPARRAY, access_virt_sarray, (j_common_ptr cinfo,
  1055.    jvirt_sarray_ptr ptr,
  1056.    JDIMENSION start_row,
  1057.    JDIMENSION num_rows,
  1058.    boolean writable));
  1059.   JMETHOD(JBLOCKARRAY, access_virt_barray, (j_common_ptr cinfo,
  1060.     jvirt_barray_ptr ptr,
  1061.     JDIMENSION start_row,
  1062.     JDIMENSION num_rows,
  1063.     boolean writable));
  1064.   JMETHOD(void, free_pool, (j_common_ptr cinfo, int pool_id));
  1065.   JMETHOD(void, self_destruct, (j_common_ptr cinfo));
  1066.   /* Limit on memory allocation for this JPEG object.  (Note that this is
  1067.    * merely advisory, not a guaranteed maximum; it only affects the space
  1068.    * used for virtual-array buffers.)  May be changed by outer application
  1069.    * after creating the JPEG object.
  1070.    */
  1071.   long max_memory_to_use;
  1072.   /* Maximum allocation request accepted by alloc_large. */
  1073.   long max_alloc_chunk;
  1074. };
  1075. /* Routine signature for application-supplied marker processing methods.
  1076.  * Need not pass marker code since it is stored in cinfo->unread_marker.
  1077.  */
  1078. typedef JMETHOD(boolean, jpeg_marker_parser_method, (j_decompress_ptr cinfo));
  1079. /* Declarations for routines called by application.
  1080.  * The JPP macro hides prototype parameters from compilers that can't cope.
  1081.  * Note JPP requires double parentheses.
  1082.  */
  1083. #ifdef HAVE_PROTOTYPES
  1084. #define JPP(arglist) arglist
  1085. #else
  1086. #define JPP(arglist) ()
  1087. #endif
  1088. /* Short forms of external names for systems with brain-damaged linkers.
  1089.  * We shorten external names to be unique in the first six letters, which
  1090.  * is good enough for all known systems.
  1091.  * (If your compiler itself needs names to be unique in less than 15 
  1092.  * characters, you are out of luck.  Get a better compiler.)
  1093.  */
  1094. #ifdef NEED_SHORT_EXTERNAL_NAMES
  1095. #define jpeg_std_error jStdError
  1096. #define jpeg_CreateCompress jCreaCompress
  1097. #define jpeg_CreateDecompress jCreaDecompress
  1098. #define jpeg_destroy_compress jDestCompress
  1099. #define jpeg_destroy_decompress jDestDecompress
  1100. #define jpeg_stdio_dest jStdDest
  1101. #define jpeg_stdio_src jStdSrc
  1102. #define jpeg_set_defaults jSetDefaults
  1103. #define jpeg_set_colorspace jSetColorspace
  1104. #define jpeg_default_colorspace jDefColorspace
  1105. #define jpeg_set_quality jSetQuality
  1106. #define jpeg_set_linear_quality jSetLQuality
  1107. #define jpeg_add_quant_table jAddQuantTable
  1108. #define jpeg_quality_scaling jQualityScaling
  1109. #define jpeg_simple_progression jSimProgress
  1110. #define jpeg_suppress_tables jSuppressTables
  1111. #define jpeg_alloc_quant_table jAlcQTable
  1112. #define jpeg_alloc_huff_table jAlcHTable
  1113. #define jpeg_start_compress jStrtCompress
  1114. #define jpeg_write_scanlines jWrtScanlines
  1115. #define jpeg_finish_compress jFinCompress
  1116. #define jpeg_write_raw_data jWrtRawData
  1117. #define jpeg_write_marker jWrtMarker
  1118. #define jpeg_write_m_header jWrtMHeader
  1119. #define jpeg_write_m_byte jWrtMByte
  1120. #define jpeg_write_tables jWrtTables
  1121. #define jpeg_read_header jReadHeader
  1122. #define jpeg_start_decompress jStrtDecompress
  1123. #define jpeg_read_scanlines jReadScanlines
  1124. #define jpeg_finish_decompress jFinDecompress
  1125. #define jpeg_read_raw_data jReadRawData
  1126. #define jpeg_has_multiple_scans jHasMultScn
  1127. #define jpeg_start_output jStrtOutput
  1128. #define jpeg_finish_output jFinOutput
  1129. #define jpeg_input_complete jInComplete
  1130. #define jpeg_new_colormap jNewCMap
  1131. #define jpeg_consume_input jConsumeInput
  1132. #define jpeg_calc_output_dimensions jCalcDimensions
  1133. #define jpeg_save_markers jSaveMarkers
  1134. #define jpeg_set_marker_processor jSetMarker
  1135. #define jpeg_read_coefficients jReadCoefs
  1136. #define jpeg_write_coefficients jWrtCoefs
  1137. #define jpeg_copy_critical_parameters jCopyCrit
  1138. #define jpeg_abort_compress jAbrtCompress
  1139. #define jpeg_abort_decompress jAbrtDecompress
  1140. #define jpeg_abort jAbort
  1141. #define jpeg_destroy jDestroy
  1142. #define jpeg_resync_to_restart jResyncRestart
  1143. #endif /* NEED_SHORT_EXTERNAL_NAMES */
  1144. /* Default error-management setup */
  1145. EXTERN(struct jpeg_error_mgr *) jpeg_std_error
  1146. JPP((struct jpeg_error_mgr * err));
  1147. /* Initialization of JPEG compression objects.
  1148.  * jpeg_create_compress() and jpeg_create_decompress() are the exported
  1149.  * names that applications should call.  These expand to calls on
  1150.  * jpeg_CreateCompress and jpeg_CreateDecompress with additional information
  1151.  * passed for version mismatch checking.
  1152.  * NB: you must set up the error-manager BEFORE calling jpeg_create_xxx.
  1153.  */
  1154. #define jpeg_create_compress(cinfo) 
  1155.     jpeg_CreateCompress((cinfo), JPEG_LIB_VERSION, 
  1156. (size_t) sizeof(struct jpeg_compress_struct))
  1157. #define jpeg_create_decompress(cinfo) 
  1158.     jpeg_CreateDecompress((cinfo), JPEG_LIB_VERSION, 
  1159.   (size_t) sizeof(struct jpeg_decompress_struct))
  1160. EXTERN(void) jpeg_CreateCompress JPP((j_compress_ptr cinfo,
  1161.       int version, size_t structsize));
  1162. EXTERN(void) jpeg_CreateDecompress JPP((j_decompress_ptr cinfo,
  1163. int version, size_t structsize));
  1164. /* Destruction of JPEG compression objects */
  1165. EXTERN(void) jpeg_destroy_compress JPP((j_compress_ptr cinfo));
  1166. EXTERN(void) jpeg_destroy_decompress JPP((j_decompress_ptr cinfo));
  1167. /* Standard data source and destination managers: stdio streams. */
  1168. /* Caller is responsible for opening the file before and closing after. */
  1169. EXTERN(void) jpeg_stdio_dest JPP((j_compress_ptr cinfo, FILE * outfile));
  1170. EXTERN(void) jpeg_stdio_src JPP((j_decompress_ptr cinfo, FILE * infile));
  1171. /* Default parameter setup for compression */
  1172. EXTERN(void) jpeg_set_defaults JPP((j_compress_ptr cinfo));
  1173. /* Compression parameter setup aids */
  1174. EXTERN(void) jpeg_set_colorspace JPP((j_compress_ptr cinfo,
  1175.       J_COLOR_SPACE colorspace));
  1176. EXTERN(void) jpeg_default_colorspace JPP((j_compress_ptr cinfo));
  1177. EXTERN(void) jpeg_set_quality JPP((j_compress_ptr cinfo, int quality,
  1178.    boolean force_baseline));
  1179. EXTERN(void) jpeg_set_linear_quality JPP((j_compress_ptr cinfo,
  1180.   int scale_factor,
  1181.   boolean force_baseline));
  1182. EXTERN(void) jpeg_add_quant_table JPP((j_compress_ptr cinfo, int which_tbl,
  1183.        const unsigned int *basic_table,
  1184.        int scale_factor,
  1185.        boolean force_baseline));
  1186. EXTERN(int) jpeg_quality_scaling JPP((int quality));
  1187. EXTERN(void) jpeg_simple_progression JPP((j_compress_ptr cinfo));
  1188. EXTERN(void) jpeg_suppress_tables JPP((j_compress_ptr cinfo,
  1189.        boolean suppress));
  1190. EXTERN(JQUANT_TBL *) jpeg_alloc_quant_table JPP((j_common_ptr cinfo));
  1191. EXTERN(JHUFF_TBL *) jpeg_alloc_huff_table JPP((j_common_ptr cinfo));
  1192. /* Main entry points for compression */
  1193. EXTERN(void) jpeg_start_compress JPP((j_compress_ptr cinfo,
  1194.       boolean write_all_tables));
  1195. EXTERN(JDIMENSION) jpeg_write_scanlines JPP((j_compress_ptr cinfo,
  1196.      JSAMPARRAY scanlines,
  1197.      JDIMENSION num_lines));
  1198. EXTERN(void) jpeg_finish_compress JPP((j_compress_ptr cinfo));
  1199. /* Replaces jpeg_write_scanlines when writing raw downsampled data. */
  1200. EXTERN(JDIMENSION) jpeg_write_raw_data JPP((j_compress_ptr cinfo,
  1201.     JSAMPIMAGE data,
  1202.     JDIMENSION num_lines));
  1203. /* Write a special marker.  See libjpeg.doc concerning safe usage. */
  1204. EXTERN(void) jpeg_write_marker
  1205. JPP((j_compress_ptr cinfo, int marker,
  1206.      const JOCTET * dataptr, unsigned int datalen));
  1207. /* Same, but piecemeal. */
  1208. EXTERN(void) jpeg_write_m_header
  1209. JPP((j_compress_ptr cinfo, int marker, unsigned int datalen));
  1210. EXTERN(void) jpeg_write_m_byte
  1211. JPP((j_compress_ptr cinfo, int val));
  1212. /* Alternate compression function: just write an abbreviated table file */
  1213. EXTERN(void) jpeg_write_tables JPP((j_compress_ptr cinfo));
  1214. /* Decompression startup: read start of JPEG datastream to see what's there */
  1215. EXTERN(int) jpeg_read_header JPP((j_decompress_ptr cinfo,
  1216.   boolean require_image));
  1217. /* Return value is one of: */
  1218. #define JPEG_SUSPENDED 0 /* Suspended due to lack of input data */
  1219. #define JPEG_HEADER_OK 1 /* Found valid image datastream */
  1220. #define JPEG_HEADER_TABLES_ONLY 2 /* Found valid table-specs-only datastream */
  1221. /* If you pass require_image = TRUE (normal case), you need not check for
  1222.  * a TABLES_ONLY return code; an abbreviated file will cause an error exit.
  1223.  * JPEG_SUSPENDED is only possible if you use a data source module that can
  1224.  * give a suspension return (the stdio source module doesn't).
  1225.  */
  1226. /* Main entry points for decompression */
  1227. EXTERN(boolean) jpeg_start_decompress JPP((j_decompress_ptr cinfo));
  1228. EXTERN(JDIMENSION) jpeg_read_scanlines JPP((j_decompress_ptr cinfo,
  1229.     JSAMPARRAY scanlines,
  1230.     JDIMENSION max_lines));
  1231. EXTERN(boolean) jpeg_finish_decompress JPP((j_decompress_ptr cinfo));
  1232. /* Replaces jpeg_read_scanlines when reading raw downsampled data. */
  1233. EXTERN(JDIMENSION) jpeg_read_raw_data JPP((j_decompress_ptr cinfo,
  1234.    JSAMPIMAGE data,
  1235.    JDIMENSION max_lines));
  1236. /* Additional entry points for buffered-image mode. */
  1237. EXTERN(boolean) jpeg_has_multiple_scans JPP((j_decompress_ptr cinfo));
  1238. EXTERN(boolean) jpeg_start_output JPP((j_decompress_ptr cinfo,
  1239.        int scan_number));
  1240. EXTERN(boolean) jpeg_finish_output JPP((j_decompress_ptr cinfo));
  1241. EXTERN(boolean) jpeg_input_complete JPP((j_decompress_ptr cinfo));
  1242. EXTERN(void) jpeg_new_colormap JPP((j_decompress_ptr cinfo));
  1243. EXTERN(int) jpeg_consume_input JPP((j_decompress_ptr cinfo));
  1244. /* Return value is one of: */
  1245. /* #define JPEG_SUSPENDED 0    Suspended due to lack of input data */
  1246. #define JPEG_REACHED_SOS 1 /* Reached start of new scan */
  1247. #define JPEG_REACHED_EOI 2 /* Reached end of image */
  1248. #define JPEG_ROW_COMPLETED 3 /* Completed one iMCU row */
  1249. #define JPEG_SCAN_COMPLETED 4 /* Completed last iMCU row of a scan */
  1250. /* Precalculate output dimensions for current decompression parameters. */
  1251. EXTERN(void) jpeg_calc_output_dimensions JPP((j_decompress_ptr cinfo));
  1252. /* Control saving of COM and APPn markers into marker_list. */
  1253. EXTERN(void) jpeg_save_markers
  1254. JPP((j_decompress_ptr cinfo, int marker_code,
  1255.      unsigned int length_limit));
  1256. /* Install a special processing method for COM or APPn markers. */
  1257. EXTERN(void) jpeg_set_marker_processor
  1258. JPP((j_decompress_ptr cinfo, int marker_code,
  1259.      jpeg_marker_parser_method routine));
  1260. /* Read or write raw DCT coefficients --- useful for lossless transcoding. */
  1261. EXTERN(jvirt_barray_ptr *) jpeg_read_coefficients JPP((j_decompress_ptr cinfo));
  1262. EXTERN(void) jpeg_write_coefficients JPP((j_compress_ptr cinfo,
  1263.   jvirt_barray_ptr * coef_arrays));
  1264. EXTERN(void) jpeg_copy_critical_parameters JPP((j_decompress_ptr srcinfo,
  1265. j_compress_ptr dstinfo));
  1266. /* If you choose to abort compression or decompression before completing
  1267.  * jpeg_finish_(de)compress, then you need to clean up to release memory,
  1268.  * temporary files, etc.  You can just call jpeg_destroy_(de)compress
  1269.  * if you're done with the JPEG object, but if you want to clean it up and
  1270.  * reuse it, call this:
  1271.  */
  1272. EXTERN(void) jpeg_abort_compress JPP((j_compress_ptr cinfo));
  1273. EXTERN(void) jpeg_abort_decompress JPP((j_decompress_ptr cinfo));
  1274. EXTERN(void)default_decompress_parms JPP((j_decompress_ptr cinfo));
  1275. /* Generic versions of jpeg_abort and jpeg_destroy that work on either
  1276.  * flavor of JPEG object.  These may be more convenient in some places.
  1277.  */
  1278. EXTERN(void) jpeg_abort JPP((j_common_ptr cinfo));
  1279. EXTERN(void) jpeg_destroy JPP((j_common_ptr cinfo));
  1280. /* Default restart-marker-resync procedure for use by data source modules */
  1281. EXTERN(boolean) jpeg_resync_to_restart JPP((j_decompress_ptr cinfo,
  1282.     int desired));
  1283. /* These marker codes are exported since applications and data source modules
  1284.  * are likely to want to use them.
  1285.  */
  1286. #define JPEG_RST0 0xD0 /* RST0 marker code */
  1287. #define JPEG_EOI 0xD9 /* EOI marker code */
  1288. #define JPEG_APP0 0xE0 /* APP0 marker code */
  1289. #define JPEG_COM 0xFE /* COM marker code */
  1290. /* If we have a brain-damaged compiler that emits warnings (or worse, errors)
  1291.  * for structure definitions that are never filled in, keep it quiet by
  1292.  * supplying dummy definitions for the various substructures.
  1293.  */
  1294. #ifdef INCOMPLETE_TYPES_BROKEN
  1295. #ifndef JPEG_INTERNALS /* will be defined in jpegint.h */
  1296. struct jvirt_sarray_control { long dummy; };
  1297. struct jvirt_barray_control { long dummy; };
  1298. struct jpeg_comp_master { long dummy; };
  1299. struct jpeg_c_main_controller { long dummy; };
  1300. struct jpeg_c_prep_controller { long dummy; };
  1301. struct jpeg_c_coef_controller { long dummy; };
  1302. struct jpeg_marker_writer { long dummy; };
  1303. struct jpeg_color_converter { long dummy; };
  1304. struct jpeg_downsampler { long dummy; };
  1305. struct jpeg_forward_dct { long dummy; };
  1306. struct jpeg_entropy_encoder { long dummy; };
  1307. struct jpeg_decomp_master { long dummy; };
  1308. struct jpeg_d_main_controller { long dummy; };
  1309. struct jpeg_d_coef_controller { long dummy; };
  1310. struct jpeg_d_post_controller { long dummy; };
  1311. struct jpeg_input_controller { long dummy; };
  1312. struct jpeg_marker_reader { long dummy; };
  1313. struct jpeg_entropy_decoder { long dummy; };
  1314. struct jpeg_inverse_dct { long dummy; };
  1315. struct jpeg_upsampler { long dummy; };
  1316. struct jpeg_color_deconverter { long dummy; };
  1317. struct jpeg_color_quantizer { long dummy; };
  1318. #endif /* JPEG_INTERNALS */
  1319. #endif /* INCOMPLETE_TYPES_BROKEN */
  1320. /*
  1321.  * The JPEG library modules define JPEG_INTERNALS before including this file.
  1322.  * The internal structure declarations are read only when that is true.
  1323.  * Applications using the library should not include jpegint.h, but may wish
  1324.  * to include jerror.h.
  1325.  */
  1326. #ifdef JPEG_INTERNALS
  1327. #include "jpegint.h" /* fetch private declarations */
  1328. #include "jerror.h" /* fetch error codes too */
  1329. #endif
  1330. #if defined(__cplusplus)
  1331. };
  1332. #endif
  1333. #endif /* JPEGLIB_H */