JDCT.h
上传用户:cjw5120
上传日期:2022-05-11
资源大小:5032k
文件大小:8k
源码类别:

网络截获/分析

开发平台:

Visual C++

  1. ////////////////////////////////////////////////////////////////////////
  2. //
  3. // Note : this file is included as part of the Smaller Animals Software
  4. // JpegFile package. Though this file has not been modified from it's 
  5. // original IJG 6a form, it is not the responsibility on the Independent
  6. // JPEG Group to answer questions regarding this code.
  7. //
  8. // Any questions you have about this code should be addressed to :
  9. //
  10. // CHRISDL@PAGESZ.NET - the distributor of this package.
  11. //
  12. // Remember, by including this code in the JpegFile package, Smaller 
  13. // Animals Software assumes all responsibilities for answering questions
  14. // about it. If we (SA Software) can't answer your questions ourselves, we 
  15. // will direct you to people who can.
  16. //
  17. // Thanks, CDL.
  18. //
  19. ////////////////////////////////////////////////////////////////////////
  20. /*
  21.  * jdct.h
  22.  *
  23.  * Copyright (C) 1994-1996, Thomas G. Lane.
  24.  * This file is part of the Independent JPEG Group's software.
  25.  * For conditions of distribution and use, see the accompanying README file.
  26.  *
  27.  * This include file contains common declarations for the forward and
  28.  * inverse DCT modules.  These declarations are private to the DCT managers
  29.  * (jcdctmgr.c, jddctmgr.c) and the individual DCT algorithms.
  30.  * The individual DCT algorithms are kept in separate files to ease 
  31.  * machine-dependent tuning (e.g., assembly coding).
  32.  */
  33. /*
  34.  * A forward DCT routine is given a pointer to a work area of type DCTELEM[];
  35.  * the DCT is to be performed in-place in that buffer.  Type DCTELEM is int
  36.  * for 8-bit samples, long for 12-bit samples.  (NOTE: Floating-point DCT
  37.  * implementations use an array of type FAST_FLOAT, instead.)
  38.  * The DCT inputs are expected to be signed (range +-CENTERJSAMPLE).
  39.  * The DCT outputs are returned scaled up by a factor of 8; they therefore
  40.  * have a range of +-8K for 8-bit data, +-128K for 12-bit data.  This
  41.  * convention improves accuracy in integer implementations and saves some
  42.  * work in floating-point ones.
  43.  * Quantization of the output coefficients is done by jcdctmgr.c.
  44.  */
  45. #if BITS_IN_JSAMPLE == 8
  46. typedef int DCTELEM; /* 16 or 32 bits is fine */
  47. #else
  48. typedef long DCTELEM; /* must have 32 bits */
  49. #endif
  50. typedef JMETHOD(void, forward_DCT_method_ptr, (DCTELEM * data));
  51. typedef JMETHOD(void, float_DCT_method_ptr, (FAST_FLOAT * data));
  52. /*
  53.  * An inverse DCT routine is given a pointer to the input JBLOCK and a pointer
  54.  * to an output sample array.  The routine must dequantize the input data as
  55.  * well as perform the IDCT; for dequantization, it uses the multiplier table
  56.  * pointed to by compptr->dct_table.  The output data is to be placed into the
  57.  * sample array starting at a specified column.  (Any row offset needed will
  58.  * be applied to the array pointer before it is passed to the IDCT code.)
  59.  * Note that the number of samples emitted by the IDCT routine is
  60.  * DCT_scaled_size * DCT_scaled_size.
  61.  */
  62. /* typedef inverse_DCT_method_ptr is declared in jpegint.h */
  63. /*
  64.  * Each IDCT routine has its own ideas about the best dct_table element type.
  65.  */
  66. typedef MULTIPLIER ISLOW_MULT_TYPE; /* short or int, whichever is faster */
  67. #if BITS_IN_JSAMPLE == 8
  68. typedef MULTIPLIER IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */
  69. #define IFAST_SCALE_BITS  2 /* fractional bits in scale factors */
  70. #else
  71. typedef long IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */
  72. #define IFAST_SCALE_BITS  13 /* fractional bits in scale factors */
  73. #endif
  74. typedef FAST_FLOAT FLOAT_MULT_TYPE; /* preferred floating type */
  75. /*
  76.  * Each IDCT routine is responsible for range-limiting its results and
  77.  * converting them to unsigned form (0..MAXJSAMPLE).  The raw outputs could
  78.  * be quite far out of range if the input data is corrupt, so a bulletproof
  79.  * range-limiting step is required.  We use a mask-and-table-lookup method
  80.  * to do the combined operations quickly.  See the comments with
  81.  * prepare_range_limit_table (in jdmaster.c) for more info.
  82.  */
  83. #define IDCT_range_limit(cinfo)  ((cinfo)->sample_range_limit + CENTERJSAMPLE)
  84. #define RANGE_MASK  (MAXJSAMPLE * 4 + 3) /* 2 bits wider than legal samples */
  85. /* Short forms of external names for systems with brain-damaged linkers. */
  86. #ifdef NEED_SHORT_EXTERNAL_NAMES
  87. #define jpeg_fdct_islow jFDislow
  88. #define jpeg_fdct_ifast jFDifast
  89. #define jpeg_fdct_float jFDfloat
  90. #define jpeg_idct_islow jRDislow
  91. #define jpeg_idct_ifast jRDifast
  92. #define jpeg_idct_float jRDfloat
  93. #define jpeg_idct_4x4 jRD4x4
  94. #define jpeg_idct_2x2 jRD2x2
  95. #define jpeg_idct_1x1 jRD1x1
  96. #endif /* NEED_SHORT_EXTERNAL_NAMES */
  97. /* Extern declarations for the forward and inverse DCT routines. */
  98. EXTERN(void) jpeg_fdct_islow JPP((DCTELEM * data));
  99. EXTERN(void) jpeg_fdct_ifast JPP((DCTELEM * data));
  100. EXTERN(void) jpeg_fdct_float JPP((FAST_FLOAT * data));
  101. EXTERN(void) jpeg_idct_islow
  102.     JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
  103.  JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
  104. EXTERN(void) jpeg_idct_ifast
  105.     JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
  106.  JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
  107. EXTERN(void) jpeg_idct_float
  108.     JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
  109.  JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
  110. EXTERN(void) jpeg_idct_4x4
  111.     JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
  112.  JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
  113. EXTERN(void) jpeg_idct_2x2
  114.     JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
  115.  JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
  116. EXTERN(void) jpeg_idct_1x1
  117.     JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
  118.  JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
  119. /*
  120.  * Macros for handling fixed-point arithmetic; these are used by many
  121.  * but not all of the DCT/IDCT modules.
  122.  *
  123.  * All values are expected to be of type long.
  124.  * Fractional constants are scaled left by CONST_BITS bits.
  125.  * CONST_BITS is defined within each module using these macros,
  126.  * and may differ from one module to the next.
  127.  */
  128. #define ONE ((long) 1)
  129. #define CONST_SCALE (ONE << CONST_BITS)
  130. /* Convert a positive real constant to an integer scaled by CONST_SCALE.
  131.  * Caution: some C compilers fail to reduce "FIX(constant)" at compile time,
  132.  * thus causing a lot of useless floating-point operations at run time.
  133.  */
  134. #define FIX(x) ((long) ((x) * CONST_SCALE + 0.5))
  135. /* Descale and correctly round an long value that's scaled by N bits.
  136.  * We assume RIGHT_SHIFT rounds towards minus infinity, so adding
  137.  * the fudge factor is correct for either sign of X.
  138.  */
  139. #define DESCALE(x,n)  RIGHT_SHIFT((x) + (ONE << ((n)-1)), n)
  140. /* Multiply an long variable by an long constant to yield an long result.
  141.  * This macro is used only when the two inputs will actually be no more than
  142.  * 16 bits wide, so that a 16x16->32 bit multiply can be used instead of a
  143.  * full 32x32 multiply.  This provides a useful speedup on many machines.
  144.  * Unfortunately there is no way to specify a 16x16->32 multiply portably
  145.  * in C, but some C compilers will do the right thing if you provide the
  146.  * correct combination of casts.
  147.  */
  148. #ifdef SHORTxSHORT_32 /* may work if 'int' is 32 bits */
  149. #define MULTIPLY16C16(var,const)  (((short) (var)) * ((short) (const)))
  150. #endif
  151. #ifdef SHORTxLCONST_32 /* known to work with Microsoft C 6.0 */
  152. #define MULTIPLY16C16(var,const)  (((short) (var)) * ((long) (const)))
  153. #endif
  154. #ifndef MULTIPLY16C16 /* default definition */
  155. #define MULTIPLY16C16(var,const)  ((var) * (const))
  156. #endif
  157. /* Same except both inputs are variables. */
  158. #ifdef SHORTxSHORT_32 /* may work if 'int' is 32 bits */
  159. #define MULTIPLY16V16(var1,var2)  (((short) (var1)) * ((short) (var2)))
  160. #endif
  161. #ifndef MULTIPLY16V16 /* default definition */
  162. #define MULTIPLY16V16(var1,var2)  ((var1) * (var2))
  163. #endif