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