Blame gtkmm-osx/jpeg-6b/jdct.h

darco 56a656
/*
darco 56a656
 * jdct.h
darco 56a656
 *
darco 56a656
 * Copyright (C) 1994-1996, Thomas G. Lane.
darco 56a656
 * This file is part of the Independent JPEG Group's software.
darco 56a656
 * For conditions of distribution and use, see the accompanying README file.
darco 56a656
 *
darco 56a656
 * This include file contains common declarations for the forward and
darco 56a656
 * inverse DCT modules.  These declarations are private to the DCT managers
darco 56a656
 * (jcdctmgr.c, jddctmgr.c) and the individual DCT algorithms.
dooglus 4ba22f
 * The individual DCT algorithms are kept in separate files to ease
darco 56a656
 * machine-dependent tuning (e.g., assembly coding).
darco 56a656
 */
darco 56a656
darco 56a656
darco 56a656
/*
darco 56a656
 * A forward DCT routine is given a pointer to a work area of type DCTELEM[];
darco 56a656
 * the DCT is to be performed in-place in that buffer.  Type DCTELEM is int
darco 56a656
 * for 8-bit samples, INT32 for 12-bit samples.  (NOTE: Floating-point DCT
darco 56a656
 * implementations use an array of type FAST_FLOAT, instead.)
darco 56a656
 * The DCT inputs are expected to be signed (range +-CENTERJSAMPLE).
darco 56a656
 * The DCT outputs are returned scaled up by a factor of 8; they therefore
darco 56a656
 * have a range of +-8K for 8-bit data, +-128K for 12-bit data.  This
darco 56a656
 * convention improves accuracy in integer implementations and saves some
darco 56a656
 * work in floating-point ones.
darco 56a656
 * Quantization of the output coefficients is done by jcdctmgr.c.
darco 56a656
 */
darco 56a656
darco 56a656
#if BITS_IN_JSAMPLE == 8
darco 56a656
typedef int DCTELEM;		/* 16 or 32 bits is fine */
darco 56a656
#else
darco 56a656
typedef INT32 DCTELEM;		/* must have 32 bits */
darco 56a656
#endif
darco 56a656
darco 56a656
typedef JMETHOD(void, forward_DCT_method_ptr, (DCTELEM * data));
darco 56a656
typedef JMETHOD(void, float_DCT_method_ptr, (FAST_FLOAT * data));
darco 56a656
darco 56a656
darco 56a656
/*
darco 56a656
 * An inverse DCT routine is given a pointer to the input JBLOCK and a pointer
darco 56a656
 * to an output sample array.  The routine must dequantize the input data as
darco 56a656
 * well as perform the IDCT; for dequantization, it uses the multiplier table
darco 56a656
 * pointed to by compptr->dct_table.  The output data is to be placed into the
darco 56a656
 * sample array starting at a specified column.  (Any row offset needed will
darco 56a656
 * be applied to the array pointer before it is passed to the IDCT code.)
darco 56a656
 * Note that the number of samples emitted by the IDCT routine is
darco 56a656
 * DCT_scaled_size * DCT_scaled_size.
darco 56a656
 */
darco 56a656
darco 56a656
/* typedef inverse_DCT_method_ptr is declared in jpegint.h */
darco 56a656
darco 56a656
/*
darco 56a656
 * Each IDCT routine has its own ideas about the best dct_table element type.
darco 56a656
 */
darco 56a656
darco 56a656
typedef MULTIPLIER ISLOW_MULT_TYPE; /* short or int, whichever is faster */
darco 56a656
#if BITS_IN_JSAMPLE == 8
darco 56a656
typedef MULTIPLIER IFAST_MULT_TYPE; /* 16 bits is OK, use short if faster */
darco 56a656
#define IFAST_SCALE_BITS  2	/* fractional bits in scale factors */
darco 56a656
#else
darco 56a656
typedef INT32 IFAST_MULT_TYPE;	/* need 32 bits for scaled quantizers */
darco 56a656
#define IFAST_SCALE_BITS  13	/* fractional bits in scale factors */
darco 56a656
#endif
darco 56a656
typedef FAST_FLOAT FLOAT_MULT_TYPE; /* preferred floating type */
darco 56a656
darco 56a656
darco 56a656
/*
darco 56a656
 * Each IDCT routine is responsible for range-limiting its results and
darco 56a656
 * converting them to unsigned form (0..MAXJSAMPLE).  The raw outputs could
darco 56a656
 * be quite far out of range if the input data is corrupt, so a bulletproof
darco 56a656
 * range-limiting step is required.  We use a mask-and-table-lookup method
darco 56a656
 * to do the combined operations quickly.  See the comments with
darco 56a656
 * prepare_range_limit_table (in jdmaster.c) for more info.
darco 56a656
 */
darco 56a656
darco 56a656
#define IDCT_range_limit(cinfo)  ((cinfo)->sample_range_limit + CENTERJSAMPLE)
darco 56a656
darco 56a656
#define RANGE_MASK  (MAXJSAMPLE * 4 + 3) /* 2 bits wider than legal samples */
darco 56a656
darco 56a656
darco 56a656
/* Short forms of external names for systems with brain-damaged linkers. */
darco 56a656
darco 56a656
#ifdef NEED_SHORT_EXTERNAL_NAMES
darco 56a656
#define jpeg_fdct_islow		jFDislow
darco 56a656
#define jpeg_fdct_ifast		jFDifast
darco 56a656
#define jpeg_fdct_float		jFDfloat
darco 56a656
#define jpeg_idct_islow		jRDislow
darco 56a656
#define jpeg_idct_ifast		jRDifast
darco 56a656
#define jpeg_idct_float		jRDfloat
darco 56a656
#define jpeg_idct_4x4		jRD4x4
darco 56a656
#define jpeg_idct_2x2		jRD2x2
darco 56a656
#define jpeg_idct_1x1		jRD1x1
darco 56a656
#endif /* NEED_SHORT_EXTERNAL_NAMES */
darco 56a656
darco 56a656
/* Extern declarations for the forward and inverse DCT routines. */
darco 56a656
darco 56a656
EXTERN(void) jpeg_fdct_islow JPP((DCTELEM * data));
darco 56a656
EXTERN(void) jpeg_fdct_ifast JPP((DCTELEM * data));
darco 56a656
EXTERN(void) jpeg_fdct_float JPP((FAST_FLOAT * data));
darco 56a656
darco 56a656
EXTERN(void) jpeg_idct_islow
darco 56a656
    JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
darco 56a656
	 JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
darco 56a656
EXTERN(void) jpeg_idct_ifast
darco 56a656
    JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
darco 56a656
	 JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
darco 56a656
EXTERN(void) jpeg_idct_float
darco 56a656
    JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
darco 56a656
	 JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
darco 56a656
EXTERN(void) jpeg_idct_4x4
darco 56a656
    JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
darco 56a656
	 JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
darco 56a656
EXTERN(void) jpeg_idct_2x2
darco 56a656
    JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
darco 56a656
	 JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
darco 56a656
EXTERN(void) jpeg_idct_1x1
darco 56a656
    JPP((j_decompress_ptr cinfo, jpeg_component_info * compptr,
darco 56a656
	 JCOEFPTR coef_block, JSAMPARRAY output_buf, JDIMENSION output_col));
darco 56a656
darco 56a656
darco 56a656
/*
darco 56a656
 * Macros for handling fixed-point arithmetic; these are used by many
darco 56a656
 * but not all of the DCT/IDCT modules.
darco 56a656
 *
darco 56a656
 * All values are expected to be of type INT32.
darco 56a656
 * Fractional constants are scaled left by CONST_BITS bits.
darco 56a656
 * CONST_BITS is defined within each module using these macros,
darco 56a656
 * and may differ from one module to the next.
darco 56a656
 */
darco 56a656
darco 56a656
#define ONE	((INT32) 1)
darco 56a656
#define CONST_SCALE (ONE << CONST_BITS)
darco 56a656
darco 56a656
/* Convert a positive real constant to an integer scaled by CONST_SCALE.
darco 56a656
 * Caution: some C compilers fail to reduce "FIX(constant)" at compile time,
darco 56a656
 * thus causing a lot of useless floating-point operations at run time.
darco 56a656
 */
darco 56a656
darco 56a656
#define FIX(x)	((INT32) ((x) * CONST_SCALE + 0.5))
darco 56a656
darco 56a656
/* Descale and correctly round an INT32 value that's scaled by N bits.
darco 56a656
 * We assume RIGHT_SHIFT rounds towards minus infinity, so adding
darco 56a656
 * the fudge factor is correct for either sign of X.
darco 56a656
 */
darco 56a656
darco 56a656
#define DESCALE(x,n)  RIGHT_SHIFT((x) + (ONE << ((n)-1)), n)
darco 56a656
darco 56a656
/* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
darco 56a656
 * This macro is used only when the two inputs will actually be no more than
darco 56a656
 * 16 bits wide, so that a 16x16->32 bit multiply can be used instead of a
darco 56a656
 * full 32x32 multiply.  This provides a useful speedup on many machines.
darco 56a656
 * Unfortunately there is no way to specify a 16x16->32 multiply portably
darco 56a656
 * in C, but some C compilers will do the right thing if you provide the
darco 56a656
 * correct combination of casts.
darco 56a656
 */
darco 56a656
darco 56a656
#ifdef SHORTxSHORT_32		/* may work if 'int' is 32 bits */
darco 56a656
#define MULTIPLY16C16(var,const)  (((INT16) (var)) * ((INT16) (const)))
darco 56a656
#endif
darco 56a656
#ifdef SHORTxLCONST_32		/* known to work with Microsoft C 6.0 */
darco 56a656
#define MULTIPLY16C16(var,const)  (((INT16) (var)) * ((INT32) (const)))
darco 56a656
#endif
darco 56a656
darco 56a656
#ifndef MULTIPLY16C16		/* default definition */
darco 56a656
#define MULTIPLY16C16(var,const)  ((var) * (const))
darco 56a656
#endif
darco 56a656
darco 56a656
/* Same except both inputs are variables. */
darco 56a656
darco 56a656
#ifdef SHORTxSHORT_32		/* may work if 'int' is 32 bits */
darco 56a656
#define MULTIPLY16V16(var1,var2)  (((INT16) (var1)) * ((INT16) (var2)))
darco 56a656
#endif
darco 56a656
darco 56a656
#ifndef MULTIPLY16V16		/* default definition */
darco 56a656
#define MULTIPLY16V16(var1,var2)  ((var1) * (var2))
darco 56a656
#endif