Path: blob/master/src/java.desktop/share/native/libjavajpeg/jdct.h
41152 views
/*1* reserved comment block2* DO NOT REMOVE OR ALTER!3*/4/*5* jdct.h6*7* Copyright (C) 1994-1996, Thomas G. Lane.8* This file is part of the Independent JPEG Group's software.9* For conditions of distribution and use, see the accompanying README file.10*11* This include file contains common declarations for the forward and12* inverse DCT modules. These declarations are private to the DCT managers13* (jcdctmgr.c, jddctmgr.c) and the individual DCT algorithms.14* The individual DCT algorithms are kept in separate files to ease15* machine-dependent tuning (e.g., assembly coding).16*/171819/*20* A forward DCT routine is given a pointer to a work area of type DCTELEM[];21* the DCT is to be performed in-place in that buffer. Type DCTELEM is int22* for 8-bit samples, INT32 for 12-bit samples. (NOTE: Floating-point DCT23* implementations use an array of type FAST_FLOAT, instead.)24* The DCT inputs are expected to be signed (range +-CENTERJSAMPLE).25* The DCT outputs are returned scaled up by a factor of 8; they therefore26* have a range of +-8K for 8-bit data, +-128K for 12-bit data. This27* convention improves accuracy in integer implementations and saves some28* work in floating-point ones.29* Quantization of the output coefficients is done by jcdctmgr.c.30*/3132#if BITS_IN_JSAMPLE == 833typedef int DCTELEM; /* 16 or 32 bits is fine */34#else35typedef INT32 DCTELEM; /* must have 32 bits */36#endif3738typedef JMETHOD(void, forward_DCT_method_ptr, (DCTELEM * data));39typedef JMETHOD(void, float_DCT_method_ptr, (FAST_FLOAT * data));404142/*43* An inverse DCT routine is given a pointer to the input JBLOCK and a pointer44* to an output sample array. The routine must dequantize the input data as45* well as perform the IDCT; for dequantization, it uses the multiplier table46* pointed to by compptr->dct_table. The output data is to be placed into the47* sample array starting at a specified column. (Any row offset needed will48* be applied to the array pointer before it is passed to the IDCT code.)49* Note that the number of samples emitted by the IDCT routine is50* DCT_scaled_size * DCT_scaled_size.51*/5253/* typedef inverse_DCT_method_ptr is declared in jpegint.h */5455/*56* Each IDCT routine has its own ideas about the best dct_table element type.57*/5859typedef MULTIPLIER ISLOW_MULT_TYPE; /* short or int, whichever is faster */60#if BITS_IN_JSAMPLE == 861typedef MULTIPLIER IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */62#define IFAST_SCALE_BITS 2 /* fractional bits in scale factors */63#else64typedef INT32 IFAST_MULT_TYPE; /* need 32 bits for scaled quantizers */65#define IFAST_SCALE_BITS 13 /* fractional bits in scale factors */66#endif67typedef FAST_FLOAT FLOAT_MULT_TYPE; /* preferred floating type */686970/*71* Each IDCT routine is responsible for range-limiting its results and72* converting them to unsigned form (0..MAXJSAMPLE). The raw outputs could73* be quite far out of range if the input data is corrupt, so a bulletproof74* range-limiting step is required. We use a mask-and-table-lookup method75* to do the combined operations quickly. See the comments with76* prepare_range_limit_table (in jdmaster.c) for more info.77*/7879#define IDCT_range_limit(cinfo) ((cinfo)->sample_range_limit + CENTERJSAMPLE)8081#define RANGE_MASK (MAXJSAMPLE * 4 + 3) /* 2 bits wider than legal samples */828384/* Short forms of external names for systems with brain-damaged linkers. */8586#ifdef NEED_SHORT_EXTERNAL_NAMES87#define jpeg_fdct_islow jFDislow88#define jpeg_fdct_ifast jFDifast89#define jpeg_fdct_float jFDfloat90#define jpeg_idct_islow jRDislow91#define jpeg_idct_ifast jRDifast92#define jpeg_idct_float jRDfloat93#define jpeg_idct_4x4 jRD4x494#define jpeg_idct_2x2 jRD2x295#define jpeg_idct_1x1 jRD1x196#endif /* NEED_SHORT_EXTERNAL_NAMES */9798/* Extern declarations for the forward and inverse DCT routines. */99100EXTERN(void) jpeg_fdct_islow JPP((DCTELEM * data));101EXTERN(void) jpeg_fdct_ifast JPP((DCTELEM * data));102EXTERN(void) jpeg_fdct_float JPP((FAST_FLOAT * data));103104EXTERN(void) jpeg_idct_islow105JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,106JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));107EXTERN(void) jpeg_idct_ifast108JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,109JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));110EXTERN(void) jpeg_idct_float111JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,112JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));113EXTERN(void) jpeg_idct_4x4114JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,115JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));116EXTERN(void) jpeg_idct_2x2117JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,118JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));119EXTERN(void) jpeg_idct_1x1120JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,121JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));122123124/*125* Macros for handling fixed-point arithmetic; these are used by many126* but not all of the DCT/IDCT modules.127*128* All values are expected to be of type INT32.129* Fractional constants are scaled left by CONST_BITS bits.130* CONST_BITS is defined within each module using these macros,131* and may differ from one module to the next.132*/133134#define ONE ((INT32) 1)135#define CONST_SCALE (ONE << CONST_BITS)136137/* Convert a positive real constant to an integer scaled by CONST_SCALE.138* Caution: some C compilers fail to reduce "FIX(constant)" at compile time,139* thus causing a lot of useless floating-point operations at run time.140*/141142#define FIX(x) ((INT32) ((x) * CONST_SCALE + 0.5))143144/* Descale and correctly round an INT32 value that's scaled by N bits.145* We assume RIGHT_SHIFT rounds towards minus infinity, so adding146* the fudge factor is correct for either sign of X.147*/148149#define DESCALE(x,n) RIGHT_SHIFT((x) + (ONE << ((n)-1)), n)150151/* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.152* This macro is used only when the two inputs will actually be no more than153* 16 bits wide, so that a 16x16->32 bit multiply can be used instead of a154* full 32x32 multiply. This provides a useful speedup on many machines.155* Unfortunately there is no way to specify a 16x16->32 multiply portably156* in C, but some C compilers will do the right thing if you provide the157* correct combination of casts.158*/159160#ifdef SHORTxSHORT_32 /* may work if 'int' is 32 bits */161#define MULTIPLY16C16(var,const) (((INT16) (var)) * ((INT16) (const)))162#endif163#ifdef SHORTxLCONST_32 /* known to work with Microsoft C 6.0 */164#define MULTIPLY16C16(var,const) (((INT16) (var)) * ((INT32) (const)))165#endif166167#ifndef MULTIPLY16C16 /* default definition */168#define MULTIPLY16C16(var,const) ((var) * (const))169#endif170171/* Same except both inputs are variables. */172173#ifdef SHORTxSHORT_32 /* may work if 'int' is 32 bits */174#define MULTIPLY16V16(var1,var2) (((INT16) (var1)) * ((INT16) (var2)))175#endif176177#ifndef MULTIPLY16V16 /* default definition */178#define MULTIPLY16V16(var1,var2) ((var1) * (var2))179#endif180181182