home *** CD-ROM | disk | FTP | other *** search
/ Encyclopedia of Graphics File Formats Companion / GFF_CD.ISO / software / unix / jpeg / jpegv4a.tar / jpegdata.h < prev    next >
C/C++ Source or Header  |  1993-02-17  |  41KB  |  960 lines

  1. /*
  2.  * jpegdata.h
  3.  *
  4.  * Copyright (C) 1991, 1992, 1993, Thomas G. Lane.
  5.  * This file is part of the Independent JPEG Group's software.
  6.  * For conditions of distribution and use, see the accompanying README file.
  7.  *
  8.  * This file defines shared data structures for the various JPEG modules.
  9.  */
  10.  
  11.  
  12. /*
  13.  * You might need to change some of the following declarations if you are
  14.  * using the JPEG software within a surrounding application program
  15.  * or porting it to an unusual system.
  16.  */
  17.  
  18.  
  19. /* If the source or destination of image data is not to be stdio streams,
  20.  * these types may need work.  You can replace them with some kind of
  21.  * pointer or indicator that is useful to you, or just ignore 'em.
  22.  * Note that the user interface and the various jrdxxx/jwrxxx modules
  23.  * will also need work for non-stdio input/output.
  24.  */
  25.  
  26. typedef FILE * JFILEREF;    /* source or dest of JPEG-compressed data */
  27.  
  28. typedef FILE * IFILEREF;    /* source or dest of non-JPEG image data */
  29.  
  30.  
  31. /* These defines are used in all function definitions and extern declarations.
  32.  * You could modify them if you need to change function linkage conventions,
  33.  * as is shown below for use with C++.  Another application would be to make
  34.  * all functions global for use with code profilers that require it.
  35.  * NOTE: the C++ test does the right thing if you are reading this include
  36.  * file in a C++ application to link to JPEG code that's been compiled with a
  37.  * regular C compiler.  I'm not sure it works if you try to compile the JPEG
  38.  * code with C++.
  39.  */
  40.  
  41. #define METHODDEF static    /* a function called through method pointers */
  42. #define LOCAL      static    /* a function used only in its module */
  43. #define GLOBAL            /* a function referenced thru EXTERNs */
  44. #ifdef __cplusplus
  45. #define EXTERN      extern "C"    /* a reference to a GLOBAL function */
  46. #else
  47. #define EXTERN      extern    /* a reference to a GLOBAL function */
  48. #endif
  49.  
  50.  
  51. /* Here is the pseudo-keyword for declaring pointers that must be "far"
  52.  * on 80x86 machines.  Most of the specialized coding for 80x86 is handled
  53.  * by just saying "FAR *" where such a pointer is needed.  In a few places
  54.  * explicit coding is needed; see uses of the NEED_FAR_POINTERS symbol.
  55.  */
  56.  
  57. #ifdef NEED_FAR_POINTERS
  58. #define FAR  far
  59. #else
  60. #define FAR
  61. #endif
  62.  
  63.  
  64.  
  65. /* The remaining declarations are not system-dependent, we hope. */
  66.  
  67.  
  68. /*
  69.  * NOTE: if you have an ancient, strict-K&R C compiler, it may choke on the
  70.  * similarly-named fields in Compress_info_struct and Decompress_info_struct.
  71.  * If this happens, you can get around it by rearranging the two structs so
  72.  * that the similarly-named fields appear first and in the same order in
  73.  * each struct.  Since such compilers are now pretty rare, we haven't done
  74.  * this in the portable code, preferring to maintain a logical ordering.
  75.  */
  76.  
  77.  
  78.  
  79. /* This macro is used to declare a "method", that is, a function pointer. */
  80. /* We want to supply prototype parameters if the compiler can cope. */
  81. /* Note that the arglist parameter must be parenthesized! */
  82.  
  83. #ifdef PROTO
  84. #define METHOD(type,methodname,arglist)  type (*methodname) arglist
  85. #else
  86. #define METHOD(type,methodname,arglist)  type (*methodname) ()
  87. #endif
  88.  
  89. /* Forward references to lists of method pointers */
  90. typedef struct External_methods_struct * external_methods_ptr;
  91. typedef struct Compress_methods_struct * compress_methods_ptr;
  92. typedef struct Decompress_methods_struct * decompress_methods_ptr;
  93.  
  94.  
  95. /* Data structures for images containing either samples or coefficients. */
  96. /* Note that the topmost (leftmost) index is always color component. */
  97. /* On 80x86 machines, the image arrays are too big for near pointers, */
  98. /* but the pointer arrays can fit in near memory. */
  99.  
  100. typedef JSAMPLE FAR *JSAMPROW;    /* ptr to one image row of pixel samples. */
  101. typedef JSAMPROW *JSAMPARRAY;    /* ptr to some rows (a 2-D sample array) */
  102. typedef JSAMPARRAY *JSAMPIMAGE;    /* a 3-D sample array: top index is color */
  103.  
  104.  
  105. #define DCTSIZE        8    /* The basic DCT block is 8x8 samples */
  106. #define DCTSIZE2    64    /* DCTSIZE squared; # of elements in a block */
  107.  
  108. typedef JCOEF JBLOCK[DCTSIZE2];    /* one block of coefficients */
  109. typedef JBLOCK FAR *JBLOCKROW;    /* pointer to one row of coefficient blocks */
  110. typedef JBLOCKROW *JBLOCKARRAY;        /* a 2-D array of coefficient blocks */
  111. typedef JBLOCKARRAY *JBLOCKIMAGE;    /* a 3-D array of coefficient blocks */
  112.  
  113. typedef JCOEF FAR *JCOEFPTR;    /* useful in a couple of places */
  114.  
  115.  
  116. /* The input and output data of the DCT transform subroutines are of
  117.  * the following type, which need not be the same as JCOEF.
  118.  * For example, on a machine with fast floating point, it might make sense
  119.  * to recode the DCT routines to use floating point; then DCTELEM would be
  120.  * 'float' or 'double'.
  121.  */
  122.  
  123. typedef JCOEF DCTELEM;
  124. typedef DCTELEM DCTBLOCK[DCTSIZE2];
  125.  
  126.  
  127. /* Types for JPEG compression parameters and working tables. */
  128.  
  129.  
  130. typedef enum {            /* defines known color spaces */
  131.     CS_UNKNOWN,        /* error/unspecified */
  132.     CS_GRAYSCALE,        /* monochrome (only 1 component) */
  133.     CS_RGB,            /* red/green/blue */
  134.     CS_YCbCr,        /* Y/Cb/Cr (also known as YUV) */
  135.     CS_YIQ,            /* Y/I/Q */
  136.     CS_CMYK            /* C/M/Y/K */
  137. } COLOR_SPACE;
  138.  
  139.  
  140. typedef struct {        /* Basic info about one component */
  141.   /* These values are fixed over the whole image */
  142.   /* For compression, they must be supplied by the user interface; */
  143.   /* for decompression, they are read from the SOF marker. */
  144.     short component_id;    /* identifier for this component (0..255) */
  145.     short component_index;    /* its index in SOF or cinfo->comp_info[] */
  146.     short h_samp_factor;    /* horizontal sampling factor (1..4) */
  147.     short v_samp_factor;    /* vertical sampling factor (1..4) */
  148.     short quant_tbl_no;    /* quantization table selector (0..3) */
  149.   /* These values may vary between scans */
  150.   /* For compression, they must be supplied by the user interface; */
  151.   /* for decompression, they are read from the SOS marker. */
  152.     short dc_tbl_no;    /* DC entropy table selector (0..3) */
  153.     short ac_tbl_no;    /* AC entropy table selector (0..3) */
  154.   /* These values are computed during compression or decompression startup */
  155.     long true_comp_width;    /* component's image width in samples */
  156.     long true_comp_height;    /* component's image height in samples */
  157.     /* the above are the logical dimensions of the downsampled image */
  158.   /* These values are computed before starting a scan of the component */
  159.     short MCU_width;    /* number of blocks per MCU, horizontally */
  160.     short MCU_height;    /* number of blocks per MCU, vertically */
  161.     short MCU_blocks;    /* MCU_width * MCU_height */
  162.     long downsampled_width;    /* image width in samples, after expansion */
  163.     long downsampled_height; /* image height in samples, after expansion */
  164.     /* the above are the true_comp_xxx values rounded up to multiples of */
  165.     /* the MCU dimensions; these are the working dimensions of the array */
  166.     /* as it is passed through the DCT or IDCT step.  NOTE: these values */
  167.     /* differ depending on whether the component is interleaved or not!! */
  168.   /* This flag is used only for decompression.  In cases where some of the */
  169.   /* components will be ignored (eg grayscale output from YCbCr image), */
  170.   /* we can skip IDCT etc. computations for the unused components. */
  171.     boolean component_needed; /* do we need the value of this component? */
  172. } jpeg_component_info;
  173.  
  174.  
  175. /* DCT coefficient quantization tables.
  176.  * For 8-bit precision, 'INT16' should be good enough for quantization values;
  177.  * for more precision, we go for the full 16 bits.  'INT16' provides a useful
  178.  * speedup on many machines (multiplication & division of JCOEFs by
  179.  * quantization values is a significant chunk of the runtime).
  180.  * Note: the values in a QUANT_TBL are always given in zigzag order.
  181.  */
  182. #ifdef EIGHT_BIT_SAMPLES
  183. typedef INT16 QUANT_VAL;    /* element of a quantization table */
  184. #else
  185. typedef UINT16 QUANT_VAL;    /* element of a quantization table */
  186. #endif
  187. typedef QUANT_VAL QUANT_TBL[DCTSIZE2];    /* A quantization table */
  188. typedef QUANT_VAL * QUANT_TBL_PTR;    /* pointer to same */
  189.  
  190.  
  191. /* Huffman coding tables.
  192.  */
  193.  
  194. #define HUFF_LOOKAHEAD    8    /* # of bits of lookahead */
  195.  
  196. typedef struct {
  197.   /* These two fields directly represent the contents of a JPEG DHT marker */
  198.     UINT8 bits[17];        /* bits[k] = # of symbols with codes of */
  199.                 /* length k bits; bits[0] is unused */
  200.     UINT8 huffval[256];    /* The symbols, in order of incr code length */
  201.   /* This field is used only during compression.  It's initialized FALSE when
  202.    * the table is created, and set TRUE when it's been output to the file.
  203.    */
  204.     boolean sent_table;    /* TRUE when table has been output */
  205.   /* The remaining fields are computed from the above to allow more efficient
  206.    * coding and decoding.  These fields should be considered private to the
  207.    * Huffman compression & decompression modules.  We use a union since only
  208.    * one set of fields is needed at a time.
  209.    */
  210.     union {
  211.       struct {        /* encoding tables: */
  212.         UINT16 ehufco[256];    /* code for each symbol */
  213.         char ehufsi[256];    /* length of code for each symbol */
  214.       } enc;
  215.       struct {        /* decoding tables: */
  216.         /* Basic tables: (element [0] of each array is unused) */
  217.         INT32 mincode[17];    /* smallest code of length k */
  218.         INT32 maxcode[18];    /* largest code of length k (-1 if none) */
  219.         /* (maxcode[17] is a sentinel to ensure huff_DECODE terminates) */
  220.         int valptr[17];    /* huffval[] index of 1st symbol of length k */
  221.         /* Lookahead tables: indexed by the next HUFF_LOOKAHEAD bits of
  222.          * the input data stream.  If the next Huffman code is no more
  223.          * than HUFF_LOOKAHEAD bits long, we can obtain its length and
  224.          * the corresponding symbol directly from these tables.
  225.          */
  226.         int look_nbits[1<<HUFF_LOOKAHEAD]; /* # bits, or 0 if too long */
  227.         UINT8 look_sym[1<<HUFF_LOOKAHEAD]; /* symbol, or unused */
  228.       } dec;
  229.     } priv;
  230. } HUFF_TBL;
  231.  
  232.  
  233. #define NUM_QUANT_TBLS      4    /* quantization tables are numbered 0..3 */
  234. #define NUM_HUFF_TBLS       4    /* Huffman tables are numbered 0..3 */
  235. #define NUM_ARITH_TBLS      16    /* arith-coding tables are numbered 0..15 */
  236. #define MAX_COMPS_IN_SCAN   4    /* JPEG limit on # of components in one scan */
  237. #define MAX_SAMP_FACTOR     4    /* JPEG limit on sampling factors */
  238. #define MAX_BLOCKS_IN_MCU   10    /* JPEG limit on # of blocks in an MCU */
  239.  
  240.  
  241. /* Working data for compression */
  242.  
  243. struct Compress_info_struct {
  244. /*
  245.  * All of these fields shall be established by the user interface before
  246.  * calling jpeg_compress, or by the input_init or c_ui_method_selection
  247.  * methods.
  248.  * Most parameters can be set to reasonable defaults by j_c_defaults.
  249.  * Note that the UI must supply the storage for the main methods struct,
  250.  * though it sets only a few of the methods there.
  251.  */
  252.     compress_methods_ptr methods; /* Points to list of methods to use */
  253.  
  254.     external_methods_ptr emethods; /* Points to list of methods to use */
  255.  
  256.     IFILEREF input_file;    /* tells input routines where to read image */
  257.     JFILEREF output_file;    /* tells output routines where to write JPEG */
  258.  
  259.     long image_width;    /* input image width */
  260.     long image_height;    /* input image height */
  261.     short input_components;    /* # of color components in input image */
  262.  
  263.     short data_precision;    /* bits of precision in image data */
  264.  
  265.     COLOR_SPACE in_color_space; /* colorspace of input file */
  266.     COLOR_SPACE jpeg_color_space; /* colorspace of JPEG file */
  267.  
  268.     double input_gamma;    /* image gamma of input file */
  269.  
  270.     boolean write_JFIF_header; /* should a JFIF marker be written? */
  271.     /* These three values are not used by the JPEG code, only copied */
  272.     /* into the JFIF APP0 marker.  density_unit can be 0 for unknown, */
  273.     /* 1 for dots/inch, or 2 for dots/cm.  Note that the pixel aspect */
  274.     /* ratio is defined by X_density/Y_density even when density_unit=0. */
  275.     UINT8 density_unit;    /* JFIF code for pixel size units */
  276.     UINT16 X_density;    /* Horizontal pixel density */
  277.     UINT16 Y_density;    /* Vertical pixel density */
  278.  
  279.     char * comment_text;    /* Text for COM block, or NULL for no COM */
  280.     /* note: JPEG library will not free() the comment string, */
  281.     /* unless you allocate it via alloc_small(). */
  282.  
  283.     short num_components;    /* # of color components in JPEG image */
  284.     jpeg_component_info * comp_info;
  285.     /* comp_info[i] describes component that appears i'th in SOF */
  286.  
  287.     QUANT_TBL_PTR quant_tbl_ptrs[NUM_QUANT_TBLS];
  288.     /* ptrs to coefficient quantization tables, or NULL if not defined */
  289.  
  290.     HUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  291.     HUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  292.     /* ptrs to Huffman coding tables, or NULL if not defined */
  293.  
  294.     UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arithmetic-coding tables */
  295.     UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arithmetic-coding tables */
  296.     UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arithmetic-coding tables */
  297.  
  298.     boolean arith_code;    /* TRUE=arithmetic coding, FALSE=Huffman */
  299.     boolean interleave;    /* TRUE=interleaved output, FALSE=not */
  300.     boolean optimize_coding; /* TRUE=optimize entropy encoding parms */
  301.     boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  302.     int smoothing_factor;    /* 1..100, or 0 for no input smoothing */
  303.  
  304.     /* The restart interval can be specified in absolute MCUs by setting
  305.      * restart_interval, or in MCU rows by setting restart_in_rows
  306.      * (in which case the correct restart_interval will be figured
  307.      * for each scan).
  308.      */
  309.     UINT16 restart_interval;/* MCUs per restart interval, or 0 for no restart */
  310.     int restart_in_rows;    /* if > 0, MCU rows per restart interval */
  311.  
  312. /*
  313.  * These fields are computed during jpeg_compress startup
  314.  */
  315.     short max_h_samp_factor; /* largest h_samp_factor */
  316.     short max_v_samp_factor; /* largest v_samp_factor */
  317.  
  318. /*
  319.  * These fields may be useful for progress monitoring
  320.  */
  321.  
  322.     int total_passes;    /* number of passes expected */
  323.     int completed_passes;    /* number of passes completed so far */
  324.  
  325. /*
  326.  * These fields are valid during any one scan
  327.  */
  328.     short comps_in_scan;    /* # of JPEG components output this time */
  329.     jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  330.     /* *cur_comp_info[i] describes component that appears i'th in SOS */
  331.  
  332.     long MCUs_per_row;    /* # of MCUs across the image */
  333.     long MCU_rows_in_scan;    /* # of MCU rows in the image */
  334.  
  335.     short blocks_in_MCU;    /* # of DCT blocks per MCU */
  336.     short MCU_membership[MAX_BLOCKS_IN_MCU];
  337.     /* MCU_membership[i] is index in cur_comp_info of component owning */
  338.     /* i'th block in an MCU */
  339.  
  340.     /* these fields are private data for the entropy encoder */
  341.     JCOEF last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each comp */
  342.     JCOEF last_dc_diff[MAX_COMPS_IN_SCAN]; /* last DC diff for each comp */
  343.     UINT16 restarts_to_go;    /* MCUs left in this restart interval */
  344.     short next_restart_num;    /* # of next RSTn marker (0..7) */
  345. };
  346.  
  347. typedef struct Compress_info_struct * compress_info_ptr;
  348.  
  349.  
  350. /* Working data for decompression */
  351.  
  352. struct Decompress_info_struct {
  353. /*
  354.  * These fields shall be established by the user interface before
  355.  * calling jpeg_decompress.
  356.  * Most parameters can be set to reasonable defaults by j_d_defaults.
  357.  * Note that the UI must supply the storage for the main methods struct,
  358.  * though it sets only a few of the methods there.
  359.  */
  360.     decompress_methods_ptr methods; /* Points to list of methods to use */
  361.  
  362.     external_methods_ptr emethods; /* Points to list of methods to use */
  363.  
  364.     JFILEREF input_file;    /* tells input routines where to read JPEG */
  365.     IFILEREF output_file;    /* tells output routines where to write image */
  366.  
  367.     /* these can be set at d_ui_method_selection time: */
  368.  
  369.     COLOR_SPACE out_color_space; /* colorspace of output */
  370.  
  371.     double output_gamma;    /* image gamma wanted in output */
  372.  
  373.     boolean quantize_colors; /* T if output is a colormapped format */
  374.     /* the following are ignored if not quantize_colors: */
  375.     boolean two_pass_quantize;    /* use two-pass color quantization? */
  376.     boolean use_dithering;        /* want color dithering? */
  377.     int desired_number_of_colors;    /* max number of colors to use */
  378.  
  379.     boolean do_block_smoothing; /* T = apply cross-block smoothing */
  380.     boolean do_pixel_smoothing; /* T = apply post-upsampling smoothing */
  381.  
  382. /*
  383.  * These fields are used for efficient buffering of data between read_jpeg_data
  384.  * and the entropy decoding object.  By using a shared buffer, we avoid copying
  385.  * data and eliminate the need for an "unget" operation at the end of a scan.
  386.  * The actual source of the data is known only to read_jpeg_data; see the
  387.  * JGETC macro, below.
  388.  * Note: the user interface is expected to allocate the input_buffer and
  389.  * initialize bytes_in_buffer to 0.  Also, for JFIF/raw-JPEG input, the UI
  390.  * actually supplies the read_jpeg_data method.  This is all handled by
  391.  * j_d_defaults in a typical implementation.
  392.  */
  393.     char * input_buffer;    /* start of buffer (private to input code) */
  394.     char * next_input_byte;    /* => next byte to read from buffer */
  395.     int bytes_in_buffer;    /* # of bytes remaining in buffer */
  396.  
  397. /*
  398.  * These fields are set by read_file_header or read_scan_header
  399.  */
  400.     long image_width;    /* overall image width */
  401.     long image_height;    /* overall image height */
  402.  
  403.     short data_precision;    /* bits of precision in image data */
  404.  
  405.     COLOR_SPACE jpeg_color_space; /* colorspace of JPEG file */
  406.  
  407.         /* These three values are not used by the JPEG code, merely copied */
  408.     /* from the JFIF APP0 marker (if any). */
  409.     UINT8 density_unit;    /* JFIF code for pixel size units */
  410.     UINT16 X_density;    /* Horizontal pixel density */
  411.     UINT16 Y_density;    /* Vertical pixel density */
  412.  
  413.     short num_components;    /* # of color components in JPEG image */
  414.     jpeg_component_info * comp_info;
  415.     /* comp_info[i] describes component that appears i'th in SOF */
  416.  
  417.     QUANT_TBL_PTR quant_tbl_ptrs[NUM_QUANT_TBLS];
  418.     /* ptrs to coefficient quantization tables, or NULL if not defined */
  419.  
  420.     HUFF_TBL * dc_huff_tbl_ptrs[NUM_HUFF_TBLS];
  421.     HUFF_TBL * ac_huff_tbl_ptrs[NUM_HUFF_TBLS];
  422.     /* ptrs to Huffman coding tables, or NULL if not defined */
  423.  
  424.     UINT8 arith_dc_L[NUM_ARITH_TBLS]; /* L values for DC arith-coding tables */
  425.     UINT8 arith_dc_U[NUM_ARITH_TBLS]; /* U values for DC arith-coding tables */
  426.     UINT8 arith_ac_K[NUM_ARITH_TBLS]; /* Kx values for AC arith-coding tables */
  427.  
  428.     boolean arith_code;    /* TRUE=arithmetic coding, FALSE=Huffman */
  429.     boolean CCIR601_sampling; /* TRUE=first samples are cosited */
  430.  
  431.     UINT16 restart_interval;/* MCUs per restart interval, or 0 for no restart */
  432.  
  433. /*
  434.  * These fields are computed during jpeg_decompress startup
  435.  */
  436.     short max_h_samp_factor; /* largest h_samp_factor */
  437.     short max_v_samp_factor; /* largest v_samp_factor */
  438.  
  439.     short color_out_comps;    /* # of color components output by color_convert */
  440.                 /* (need not match num_components) */
  441.     short final_out_comps;    /* # of color components sent to put_pixel_rows */
  442.     /* (1 when quantizing colors, else same as color_out_comps) */
  443.  
  444.     JSAMPLE * sample_range_limit; /* table for fast range-limiting */
  445.  
  446. /*
  447.  * When quantizing colors, the color quantizer leaves a pointer to the output
  448.  * colormap in these fields.  The colormap is valid from the time put_color_map
  449.  * is called (must be before any put_pixel_rows calls) until shutdown (more
  450.  * specifically, until free_all is called to release memory).
  451.  */
  452.     int actual_number_of_colors; /* actual number of entries */
  453.     JSAMPARRAY colormap;    /* NULL if not valid */
  454.     /* map has color_out_comps rows * actual_number_of_colors columns */
  455.  
  456. /*
  457.  * These fields may be useful for progress monitoring
  458.  */
  459.  
  460.     int total_passes;    /* number of passes expected */
  461.     int completed_passes;    /* number of passes completed so far */
  462.  
  463. /*
  464.  * These fields are valid during any one scan
  465.  */
  466.     short comps_in_scan;    /* # of JPEG components input this time */
  467.     jpeg_component_info * cur_comp_info[MAX_COMPS_IN_SCAN];
  468.     /* *cur_comp_info[i] describes component that appears i'th in SOS */
  469.  
  470.     long MCUs_per_row;    /* # of MCUs across the image */
  471.     long MCU_rows_in_scan;    /* # of MCU rows in the image */
  472.  
  473.     short blocks_in_MCU;    /* # of DCT blocks per MCU */
  474.     short MCU_membership[MAX_BLOCKS_IN_MCU];
  475.     /* MCU_membership[i] is index in cur_comp_info of component owning */
  476.     /* i'th block in an MCU */
  477.  
  478.     /* these fields are private data for the entropy encoder */
  479.     JCOEF last_dc_val[MAX_COMPS_IN_SCAN]; /* last DC coef for each comp */
  480.     JCOEF last_dc_diff[MAX_COMPS_IN_SCAN]; /* last DC diff for each comp */
  481.     UINT16 restarts_to_go;    /* MCUs left in this restart interval */
  482.     short next_restart_num;    /* # of next RSTn marker (0..7) */
  483. };
  484.  
  485. typedef struct Decompress_info_struct * decompress_info_ptr;
  486.  
  487.  
  488. /* Macros for reading data from the decompression input buffer */
  489.  
  490. #ifdef CHAR_IS_UNSIGNED
  491. #define JGETC(cinfo)    ( --(cinfo)->bytes_in_buffer < 0 ? \
  492.              (*(cinfo)->methods->read_jpeg_data) (cinfo) : \
  493.              (int) (*(cinfo)->next_input_byte++) )
  494. #else
  495. #define JGETC(cinfo)    ( --(cinfo)->bytes_in_buffer < 0 ? \
  496.              (*(cinfo)->methods->read_jpeg_data) (cinfo) : \
  497.              (int) (*(cinfo)->next_input_byte++) & 0xFF )
  498. #endif
  499.  
  500. #define JUNGETC(ch,cinfo)  ((cinfo)->bytes_in_buffer++, \
  501.                 *(--((cinfo)->next_input_byte)) = (char) (ch))
  502.  
  503. #define MIN_UNGET    4    /* may always do at least 4 JUNGETCs */
  504.  
  505.  
  506. /* A virtual image has a control block whose contents are private to the
  507.  * memory manager module (and may differ between managers).  The rest of the
  508.  * code only refers to virtual images by these pointer types, and never
  509.  * dereferences the pointer.
  510.  */
  511.  
  512. typedef struct big_sarray_control * big_sarray_ptr;
  513. typedef struct big_barray_control * big_barray_ptr;
  514.  
  515. /* Although a real ANSI C compiler can deal perfectly well with pointers to
  516.  * unspecified structures (see "incomplete types" in the spec), a few pre-ANSI
  517.  * and pseudo-ANSI compilers get confused.  To keep one of these bozos happy,
  518.  * add -DINCOMPLETE_TYPES_BROKEN to CFLAGS in your Makefile.  Then we will
  519.  * pseudo-define the structs as containing a single "dummy" field.
  520.  * The memory managers #define AM_MEMORY_MANAGER before including this file,
  521.  * so that they can make their own definitions of the structs.
  522.  */
  523.  
  524. #ifdef INCOMPLETE_TYPES_BROKEN
  525. #ifndef AM_MEMORY_MANAGER
  526. struct big_sarray_control { long dummy; };
  527. struct big_barray_control { long dummy; };
  528. #endif
  529. #endif
  530.  
  531.  
  532. /* Method types that need typedefs */
  533.  
  534. typedef METHOD(void, MCU_output_method_ptr, (compress_info_ptr cinfo,
  535.                          JBLOCK *MCU_data));
  536. typedef METHOD(void, MCU_output_caller_ptr, (compress_info_ptr cinfo,
  537.                          MCU_output_method_ptr output_method));
  538. typedef METHOD(void, downsample_ptr, (compress_info_ptr cinfo,
  539.                       int which_component,
  540.                       long input_cols, int input_rows,
  541.                       long output_cols, int output_rows,
  542.                       JSAMPARRAY above,
  543.                       JSAMPARRAY input_data,
  544.                       JSAMPARRAY below,
  545.                       JSAMPARRAY output_data));
  546. typedef METHOD(void, upsample_ptr, (decompress_info_ptr cinfo,
  547.                     int which_component,
  548.                     long input_cols, int input_rows,
  549.                     long output_cols, int output_rows,
  550.                     JSAMPARRAY above,
  551.                     JSAMPARRAY input_data,
  552.                     JSAMPARRAY below,
  553.                     JSAMPARRAY output_data));
  554. typedef METHOD(void, quantize_method_ptr, (decompress_info_ptr cinfo,
  555.                        int num_rows,
  556.                        JSAMPIMAGE input_data,
  557.                        JSAMPARRAY output_workspace));
  558. typedef METHOD(void, quantize_caller_ptr, (decompress_info_ptr cinfo,
  559.                        quantize_method_ptr quantize_method));
  560.  
  561.  
  562. /* These structs contain function pointers for the various JPEG methods. */
  563.  
  564. /* Routines to be provided by the surrounding application, rather than the
  565.  * portable JPEG code proper.  These are the same for compression and
  566.  * decompression.
  567.  */
  568.  
  569. struct External_methods_struct {
  570.     /* User interface: error exit and trace message routines */
  571.     /* NOTE: the string msgtext parameters will eventually be replaced
  572.      * by an enumerated-type code so that non-English error messages
  573.      * can be substituted easily.  This will not be done until all the
  574.      * code is in place, so that we know what messages are needed.
  575.      */
  576.     METHOD(void, error_exit, (const char *msgtext));
  577.     METHOD(void, trace_message, (const char *msgtext));
  578.  
  579.     /* Working data for error/trace facility */
  580.     /* See macros below for the usage of these variables */
  581.     int trace_level;    /* level of detail of tracing messages */
  582.     /* Use level 0 for important warning messages (nonfatal errors) */
  583.     /* Use levels 1, 2, 3 for successively more detailed trace options */
  584.  
  585.     /* For recoverable corrupt-data errors, we emit a warning message and
  586.      * keep going.  A surrounding application can check for bad data by
  587.      * seeing if num_warnings is nonzero at the end of processing.
  588.      */
  589.     long num_warnings;    /* number of corrupt-data warnings */
  590.     int first_warning_level; /* trace level for first warning */
  591.     int more_warning_level;    /* trace level for subsequent warnings */
  592.  
  593.     int message_parm[8];    /* store numeric parms for messages here */
  594.  
  595.     /* Memory management */
  596.     /* NB: alloc routines never return NULL. They exit to */
  597.     /* error_exit if not successful. */
  598.     METHOD(void *, alloc_small, (size_t sizeofobject));
  599.     METHOD(void, free_small, (void *ptr));
  600.     METHOD(void FAR *, alloc_medium, (size_t sizeofobject));
  601.     METHOD(void, free_medium, (void FAR *ptr));
  602.     METHOD(JSAMPARRAY, alloc_small_sarray, (long samplesperrow,
  603.                         long numrows));
  604.     METHOD(void, free_small_sarray, (JSAMPARRAY ptr));
  605.     METHOD(JBLOCKARRAY, alloc_small_barray, (long blocksperrow,
  606.                          long numrows));
  607.     METHOD(void, free_small_barray, (JBLOCKARRAY ptr));
  608.     METHOD(big_sarray_ptr, request_big_sarray, (long samplesperrow,
  609.                             long numrows,
  610.                             long unitheight));
  611.     METHOD(big_barray_ptr, request_big_barray, (long blocksperrow,
  612.                             long numrows,
  613.                             long unitheight));
  614.     METHOD(void, alloc_big_arrays, (long extra_small_samples,
  615.                     long extra_small_blocks,
  616.                     long extra_medium_space));
  617.     METHOD(JSAMPARRAY, access_big_sarray, (big_sarray_ptr ptr,
  618.                            long start_row,
  619.                            boolean writable));
  620.     METHOD(JBLOCKARRAY, access_big_barray, (big_barray_ptr ptr,
  621.                         long start_row,
  622.                         boolean writable));
  623.     METHOD(void, free_big_sarray, (big_sarray_ptr ptr));
  624.     METHOD(void, free_big_barray, (big_barray_ptr ptr));
  625.     METHOD(void, free_all, (void));
  626.  
  627.     long max_memory_to_use;    /* maximum amount of memory to use */
  628. };
  629.  
  630. /* Macros to simplify using the error and trace message stuff */
  631. /* The first parameter is generally cinfo->emethods */
  632.  
  633. /* Fatal errors (print message and exit) */
  634. #define ERREXIT(emeth,msg)        ((*(emeth)->error_exit) (msg))
  635. #define ERREXIT1(emeth,msg,p1)        ((emeth)->message_parm[0] = (p1), \
  636.                      (*(emeth)->error_exit) (msg))
  637. #define ERREXIT2(emeth,msg,p1,p2)    ((emeth)->message_parm[0] = (p1), \
  638.                      (emeth)->message_parm[1] = (p2), \
  639.                      (*(emeth)->error_exit) (msg))
  640. #define ERREXIT3(emeth,msg,p1,p2,p3)    ((emeth)->message_parm[0] = (p1), \
  641.                      (emeth)->message_parm[1] = (p2), \
  642.                      (emeth)->message_parm[2] = (p3), \
  643.                      (*(emeth)->error_exit) (msg))
  644. #define ERREXIT4(emeth,msg,p1,p2,p3,p4) ((emeth)->message_parm[0] = (p1), \
  645.                      (emeth)->message_parm[1] = (p2), \
  646.                      (emeth)->message_parm[2] = (p3), \
  647.                      (emeth)->message_parm[3] = (p4), \
  648.                      (*(emeth)->error_exit) (msg))
  649.  
  650. #define MAKESTMT(stuff)        do { stuff } while (0)
  651.  
  652. /* Nonfatal errors (we'll keep going, but the data is probably corrupt) */
  653. /* Note that warning count is incremented as a side-effect! */
  654. #define WARNMS(emeth,msg)    \
  655.   MAKESTMT( if ((emeth)->trace_level >= ((emeth)->num_warnings++ ? \
  656.         (emeth)->more_warning_level : (emeth)->first_warning_level)){ \
  657.         (*(emeth)->trace_message) (msg); } )
  658. #define WARNMS1(emeth,msg,p1)    \
  659.   MAKESTMT( if ((emeth)->trace_level >= ((emeth)->num_warnings++ ? \
  660.         (emeth)->more_warning_level : (emeth)->first_warning_level)){ \
  661.         (emeth)->message_parm[0] = (p1); \
  662.         (*(emeth)->trace_message) (msg); } )
  663. #define WARNMS2(emeth,msg,p1,p2)    \
  664.   MAKESTMT( if ((emeth)->trace_level >= ((emeth)->num_warnings++ ? \
  665.         (emeth)->more_warning_level : (emeth)->first_warning_level)){ \
  666.         (emeth)->message_parm[0] = (p1); \
  667.         (emeth)->message_parm[1] = (p2); \
  668.         (*(emeth)->trace_message) (msg); } )
  669.  
  670. /* Informational/debugging messages */
  671. #define TRACEMS(emeth,lvl,msg)    \
  672.   MAKESTMT( if ((emeth)->trace_level >= (lvl)) { \
  673.         (*(emeth)->trace_message) (msg); } )
  674. #define TRACEMS1(emeth,lvl,msg,p1)    \
  675.   MAKESTMT( if ((emeth)->trace_level >= (lvl)) { \
  676.         (emeth)->message_parm[0] = (p1); \
  677.         (*(emeth)->trace_message) (msg); } )
  678. #define TRACEMS2(emeth,lvl,msg,p1,p2)    \
  679.   MAKESTMT( if ((emeth)->trace_level >= (lvl)) { \
  680.         (emeth)->message_parm[0] = (p1); \
  681.         (emeth)->message_parm[1] = (p2); \
  682.         (*(emeth)->trace_message) (msg); } )
  683. #define TRACEMS3(emeth,lvl,msg,p1,p2,p3)    \
  684.   MAKESTMT( if ((emeth)->trace_level >= (lvl)) { \
  685.         int * _mp = (emeth)->message_parm; \
  686.         *_mp++ = (p1); *_mp++ = (p2); *_mp = (p3); \
  687.         (*(emeth)->trace_message) (msg); } )
  688. #define TRACEMS4(emeth,lvl,msg,p1,p2,p3,p4)    \
  689.   MAKESTMT( if ((emeth)->trace_level >= (lvl)) { \
  690.         int * _mp = (emeth)->message_parm; \
  691.         *_mp++ = (p1); *_mp++ = (p2); *_mp++ = (p3); *_mp = (p4); \
  692.         (*(emeth)->trace_message) (msg); } )
  693. #define TRACEMS8(emeth,lvl,msg,p1,p2,p3,p4,p5,p6,p7,p8)    \
  694.   MAKESTMT( if ((emeth)->trace_level >= (lvl)) { \
  695.         int * _mp = (emeth)->message_parm; \
  696.         *_mp++ = (p1); *_mp++ = (p2); *_mp++ = (p3); *_mp++ = (p4); \
  697.         *_mp++ = (p5); *_mp++ = (p6); *_mp++ = (p7); *_mp = (p8); \
  698.         (*(emeth)->trace_message) (msg); } )
  699.  
  700.  
  701. /* Methods used during JPEG compression. */
  702.  
  703. struct Compress_methods_struct {
  704.     /* Hook for user interface to get control after input_init */
  705.     METHOD(void, c_ui_method_selection, (compress_info_ptr cinfo));
  706.     /* Hook for user interface to do progress monitoring */
  707.     METHOD(void, progress_monitor, (compress_info_ptr cinfo,
  708.                     long loopcounter, long looplimit));
  709.     /* Input image reading & conversion to standard form */
  710.     METHOD(void, input_init, (compress_info_ptr cinfo));
  711.     METHOD(void, get_input_row, (compress_info_ptr cinfo,
  712.                      JSAMPARRAY pixel_row));
  713.     METHOD(void, input_term, (compress_info_ptr cinfo));
  714.     /* Color space and gamma conversion */
  715.     METHOD(void, colorin_init, (compress_info_ptr cinfo));
  716.     METHOD(void, get_sample_rows, (compress_info_ptr cinfo,
  717.                        int rows_to_read,
  718.                        JSAMPIMAGE image_data));
  719.     METHOD(void, colorin_term, (compress_info_ptr cinfo));
  720.     /* Expand picture data at edges */
  721.     METHOD(void, edge_expand, (compress_info_ptr cinfo,
  722.                    long input_cols, int input_rows,
  723.                    long output_cols, int output_rows,
  724.                    JSAMPIMAGE image_data));
  725.     /* Downsample pixel values of a single component */
  726.     /* There can be a different downsample method for each component */
  727.     METHOD(void, downsample_init, (compress_info_ptr cinfo));
  728.     downsample_ptr downsample[MAX_COMPS_IN_SCAN];
  729.     METHOD(void, downsample_term, (compress_info_ptr cinfo));
  730.     /* Extract samples in MCU order, process & hand off to output_method */
  731.     /* The input is always exactly N MCU rows worth of data */
  732.     METHOD(void, extract_init, (compress_info_ptr cinfo));
  733.     METHOD(void, extract_MCUs, (compress_info_ptr cinfo,
  734.                     JSAMPIMAGE image_data,
  735.                     int num_mcu_rows,
  736.                     MCU_output_method_ptr output_method));
  737.     METHOD(void, extract_term, (compress_info_ptr cinfo));
  738.     /* Entropy encoding parameter optimization */
  739.     METHOD(void, entropy_optimize, (compress_info_ptr cinfo,
  740.                     MCU_output_caller_ptr source_method));
  741.     /* Entropy encoding */
  742.     METHOD(void, entropy_encode_init, (compress_info_ptr cinfo));
  743.     METHOD(void, entropy_encode, (compress_info_ptr cinfo,
  744.                       JBLOCK *MCU_data));
  745.     METHOD(void, entropy_encode_term, (compress_info_ptr cinfo));
  746.     /* JPEG file header construction */
  747.     METHOD(void, write_file_header, (compress_info_ptr cinfo));
  748.     METHOD(void, write_scan_header, (compress_info_ptr cinfo));
  749.     METHOD(void, write_jpeg_data, (compress_info_ptr cinfo,
  750.                        char *dataptr,
  751.                        int datacount));
  752.     METHOD(void, write_scan_trailer, (compress_info_ptr cinfo));
  753.     METHOD(void, write_file_trailer, (compress_info_ptr cinfo));
  754.     /* Pipeline control */
  755.     METHOD(void, c_pipeline_controller, (compress_info_ptr cinfo));
  756.     METHOD(void, entropy_output, (compress_info_ptr cinfo,
  757.                       char *dataptr,
  758.                       int datacount));
  759.     /* Overall control */
  760.     METHOD(void, c_per_scan_method_selection, (compress_info_ptr cinfo));
  761. };
  762.  
  763. /* Methods used during JPEG decompression. */
  764.  
  765. struct Decompress_methods_struct {
  766.     /* Hook for user interface to get control after reading file header */
  767.     METHOD(void, d_ui_method_selection, (decompress_info_ptr cinfo));
  768.     /* Hook for user interface to process comment blocks */
  769.     METHOD(void, process_comment, (decompress_info_ptr cinfo,
  770.                        long comment_length));
  771.     /* Hook for user interface to do progress monitoring */
  772.     METHOD(void, progress_monitor, (decompress_info_ptr cinfo,
  773.                     long loopcounter, long looplimit));
  774.     /* JPEG file scanning */
  775.     METHOD(void, read_file_header, (decompress_info_ptr cinfo));
  776.     METHOD(boolean, read_scan_header, (decompress_info_ptr cinfo));
  777.     METHOD(int, read_jpeg_data, (decompress_info_ptr cinfo));
  778.     METHOD(void, resync_to_restart, (decompress_info_ptr cinfo,
  779.                      int marker));
  780.     METHOD(void, read_scan_trailer, (decompress_info_ptr cinfo));
  781.     METHOD(void, read_file_trailer, (decompress_info_ptr cinfo));
  782.     /* Entropy decoding */
  783.     METHOD(void, entropy_decode_init, (decompress_info_ptr cinfo));
  784.     METHOD(void, entropy_decode, (decompress_info_ptr cinfo,
  785.                       JBLOCKROW *MCU_data));
  786.     METHOD(void, entropy_decode_term, (decompress_info_ptr cinfo));
  787.     /* MCU disassembly: fetch MCUs from entropy_decode, build coef array */
  788.     /* The reverse_DCT step is in the same module for symmetry reasons */
  789.     METHOD(void, disassemble_init, (decompress_info_ptr cinfo));
  790.     METHOD(void, disassemble_MCU, (decompress_info_ptr cinfo,
  791.                        JBLOCKIMAGE image_data));
  792.     METHOD(void, reverse_DCT, (decompress_info_ptr cinfo,
  793.                    JBLOCKIMAGE coeff_data,
  794.                    JSAMPIMAGE output_data, int start_row));
  795.     METHOD(void, disassemble_term, (decompress_info_ptr cinfo));
  796.     /* Cross-block smoothing */
  797.     METHOD(void, smooth_coefficients, (decompress_info_ptr cinfo,
  798.                        jpeg_component_info *compptr,
  799.                        JBLOCKROW above,
  800.                        JBLOCKROW currow,
  801.                        JBLOCKROW below,
  802.                        JBLOCKROW output));
  803.     /* Upsample pixel values of a single component */
  804.     /* There can be a different upsample method for each component */
  805.     METHOD(void, upsample_init, (decompress_info_ptr cinfo));
  806.     upsample_ptr upsample[MAX_COMPS_IN_SCAN];
  807.     METHOD(void, upsample_term, (decompress_info_ptr cinfo));
  808.     /* Color space and gamma conversion */
  809.     METHOD(void, colorout_init, (decompress_info_ptr cinfo));
  810.     METHOD(void, color_convert, (decompress_info_ptr cinfo,
  811.                      int num_rows, long num_cols,
  812.                      JSAMPIMAGE input_data,
  813.                      JSAMPIMAGE output_data));
  814.     METHOD(void, colorout_term, (decompress_info_ptr cinfo));
  815.     /* Color quantization */
  816.     METHOD(void, color_quant_init, (decompress_info_ptr cinfo));
  817.     METHOD(void, color_quantize, (decompress_info_ptr cinfo,
  818.                       int num_rows,
  819.                       JSAMPIMAGE input_data,
  820.                       JSAMPARRAY output_data));
  821.     METHOD(void, color_quant_prescan, (decompress_info_ptr cinfo,
  822.                        int num_rows,
  823.                        JSAMPIMAGE image_data,
  824.                        JSAMPARRAY workspace));
  825.     METHOD(void, color_quant_doit, (decompress_info_ptr cinfo,
  826.                     quantize_caller_ptr source_method));
  827.     METHOD(void, color_quant_term, (decompress_info_ptr cinfo));
  828.     /* Output image writing */
  829.     METHOD(void, output_init, (decompress_info_ptr cinfo));
  830.     METHOD(void, put_color_map, (decompress_info_ptr cinfo,
  831.                      int num_colors, JSAMPARRAY colormap));
  832.     METHOD(void, put_pixel_rows, (decompress_info_ptr cinfo,
  833.                       int num_rows,
  834.                       JSAMPIMAGE pixel_data));
  835.     METHOD(void, output_term, (decompress_info_ptr cinfo));
  836.     /* Pipeline control */
  837.     METHOD(void, d_pipeline_controller, (decompress_info_ptr cinfo));
  838.     /* Overall control */
  839.     METHOD(void, d_per_scan_method_selection, (decompress_info_ptr cinfo));
  840. };
  841.  
  842.  
  843. /* External declarations for routines that aren't called via method ptrs. */
  844. /* Note: use "j" as first char of names to minimize namespace pollution. */
  845. /* The PP macro hides prototype parameters from compilers that can't cope. */
  846.  
  847. #ifdef PROTO
  848. #define PP(arglist)    arglist
  849. #else
  850. #define PP(arglist)    ()
  851. #endif
  852.  
  853.  
  854. /* main entry for compression */
  855. EXTERN void jpeg_compress PP((compress_info_ptr cinfo));
  856.  
  857. /* default parameter setup for compression */
  858. EXTERN void j_c_defaults PP((compress_info_ptr cinfo, int quality,
  859.                  boolean force_baseline));
  860. EXTERN void j_monochrome_default PP((compress_info_ptr cinfo));
  861. EXTERN void j_set_quality PP((compress_info_ptr cinfo, int quality,
  862.                   boolean force_baseline));
  863. /* advanced compression parameter setup aids */
  864. EXTERN void j_add_quant_table PP((compress_info_ptr cinfo, int which_tbl,
  865.                   const QUANT_VAL *basic_table,
  866.                   int scale_factor, boolean force_baseline));
  867. EXTERN int j_quality_scaling PP((int quality));
  868.  
  869. /* main entry for decompression */
  870. EXTERN void jpeg_decompress PP((decompress_info_ptr cinfo));
  871.  
  872. /* default parameter setup for decompression */
  873. EXTERN void j_d_defaults PP((decompress_info_ptr cinfo,
  874.                  boolean standard_buffering));
  875.  
  876. /* forward DCT */
  877. EXTERN void j_fwd_dct PP((DCTBLOCK data));
  878. /* inverse DCT */
  879. EXTERN void j_rev_dct PP((DCTBLOCK data));
  880.  
  881. /* utility routines in jutils.c */
  882. EXTERN long jround_up PP((long a, long b));
  883. EXTERN void jcopy_sample_rows PP((JSAMPARRAY input_array, int source_row,
  884.                   JSAMPARRAY output_array, int dest_row,
  885.                   int num_rows, long num_cols));
  886. EXTERN void jcopy_block_row PP((JBLOCKROW input_row, JBLOCKROW output_row,
  887.                 long num_blocks));
  888. EXTERN void jzero_far PP((void FAR * target, size_t bytestozero));
  889.  
  890. /* method selection routines for compression modules */
  891. EXTERN void jselcpipeline PP((compress_info_ptr cinfo)); /* jcpipe.c */
  892. EXTERN void jselchuffman PP((compress_info_ptr cinfo)); /* jchuff.c */
  893. EXTERN void jselcarithmetic PP((compress_info_ptr cinfo)); /* jcarith.c */
  894. EXTERN void jselexpand PP((compress_info_ptr cinfo)); /* jcexpand.c */
  895. EXTERN void jseldownsample PP((compress_info_ptr cinfo)); /* jcsample.c */
  896. EXTERN void jselcmcu PP((compress_info_ptr cinfo)); /* jcmcu.c */
  897. EXTERN void jselccolor PP((compress_info_ptr cinfo));    /* jccolor.c */
  898. /* The user interface should call one of these to select input format: */
  899. EXTERN void jselrgif PP((compress_info_ptr cinfo)); /* jrdgif.c */
  900. EXTERN void jselrppm PP((compress_info_ptr cinfo)); /* jrdppm.c */
  901. EXTERN void jselrrle PP((compress_info_ptr cinfo)); /* jrdrle.c */
  902. EXTERN void jselrtarga PP((compress_info_ptr cinfo)); /* jrdtarga.c */
  903. /* and one of these to select output header format: */
  904. EXTERN void jselwjfif PP((compress_info_ptr cinfo)); /* jwrjfif.c */
  905.  
  906. /* method selection routines for decompression modules */
  907. EXTERN void jseldpipeline PP((decompress_info_ptr cinfo)); /* jdpipe.c */
  908. EXTERN void jseldhuffman PP((decompress_info_ptr cinfo)); /* jdhuff.c */
  909. EXTERN void jseldarithmetic PP((decompress_info_ptr cinfo)); /* jdarith.c */
  910. EXTERN void jseldmcu PP((decompress_info_ptr cinfo)); /* jdmcu.c */
  911. EXTERN void jselbsmooth PP((decompress_info_ptr cinfo)); /* jbsmooth.c */
  912. EXTERN void jselupsample PP((decompress_info_ptr cinfo)); /* jdsample.c */
  913. EXTERN void jseldcolor PP((decompress_info_ptr cinfo));    /* jdcolor.c */
  914. EXTERN void jsel1quantize PP((decompress_info_ptr cinfo)); /* jquant1.c */
  915. EXTERN void jsel2quantize PP((decompress_info_ptr cinfo)); /* jquant2.c */
  916. /* The user interface should call one of these to select input format: */
  917. EXTERN void jselrjfif PP((decompress_info_ptr cinfo)); /* jrdjfif.c */
  918. /* and one of these to select output image format: */
  919. EXTERN void jselwgif PP((decompress_info_ptr cinfo)); /* jwrgif.c */
  920. EXTERN void jselwppm PP((decompress_info_ptr cinfo)); /* jwrppm.c */
  921. EXTERN void jselwrle PP((decompress_info_ptr cinfo)); /* jwrrle.c */
  922. EXTERN void jselwtarga PP((decompress_info_ptr cinfo)); /* jwrtarga.c */
  923.  
  924. /* method selection routines for system-dependent modules */
  925. EXTERN void jselerror PP((external_methods_ptr emethods)); /* jerror.c */
  926. EXTERN void jselmemmgr PP((external_methods_ptr emethods)); /* jmemmgr.c */
  927.  
  928.  
  929. /* We assume that right shift corresponds to signed division by 2 with
  930.  * rounding towards minus infinity.  This is correct for typical "arithmetic
  931.  * shift" instructions that shift in copies of the sign bit.  But some
  932.  * C compilers implement >> with an unsigned shift.  For these machines you
  933.  * must define RIGHT_SHIFT_IS_UNSIGNED.
  934.  * RIGHT_SHIFT provides a proper signed right shift of an INT32 quantity.
  935.  * It is only applied with constant shift counts.  SHIFT_TEMPS must be
  936.  * included in the variables of any routine using RIGHT_SHIFT.
  937.  */
  938.  
  939. #ifdef RIGHT_SHIFT_IS_UNSIGNED
  940. #define SHIFT_TEMPS    INT32 shift_temp;
  941. #define RIGHT_SHIFT(x,shft)  \
  942.     ((shift_temp = (x)) < 0 ? \
  943.      (shift_temp >> (shft)) | ((~((INT32) 0)) << (32-(shft))) : \
  944.      (shift_temp >> (shft)))
  945. #else
  946. #define SHIFT_TEMPS
  947. #define RIGHT_SHIFT(x,shft)    ((x) >> (shft))
  948. #endif
  949.  
  950.  
  951. /* Miscellaneous useful macros */
  952.  
  953. #undef MAX
  954. #define MAX(a,b)    ((a) > (b) ? (a) : (b))
  955. #undef MIN
  956. #define MIN(a,b)    ((a) < (b) ? (a) : (b))
  957.  
  958.  
  959. #define RST0    0xD0        /* RST0 marker code */
  960.