JIDCTRED.C
上传用户:wep9318
上传日期:2007-01-07
资源大小:893k
文件大小:14k
源码类别:

图片显示

开发平台:

Visual C++

  1. /*
  2.  * jidctred.c
  3.  *
  4.  * Copyright (C) 1994, 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 contains inverse-DCT routines that produce reduced-size output:
  9.  * either 4x4, 2x2, or 1x1 pixels from an 8x8 DCT block.
  10.  *
  11.  * The implementation is based on the Loeffler, Ligtenberg and Moschytz (LL&M)
  12.  * algorithm used in jidctint.c.  We simply replace each 8-to-8 1-D IDCT step
  13.  * with an 8-to-4 step that produces the four averages of two adjacent outputs
  14.  * (or an 8-to-2 step producing two averages of four outputs, for 2x2 output).
  15.  * These steps were derived by computing the corresponding values at the end
  16.  * of the normal LL&M code, then simplifying as much as possible.
  17.  *
  18.  * 1x1 is trivial: just take the DC coefficient divided by 8.
  19.  *
  20.  * See jidctint.c for additional comments.
  21.  */
  22. #define JPEG_INTERNALS
  23. #include "jinclude.h"
  24. #include "jpeglib.h"
  25. #include "jdct.h" /* Private declarations for DCT subsystem */
  26. #ifdef IDCT_SCALING_SUPPORTED
  27. /*
  28.  * This module is specialized to the case DCTSIZE = 8.
  29.  */
  30. #if DCTSIZE != 8
  31.   Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
  32. #endif
  33. /* Scaling is the same as in jidctint.c. */
  34. #if BITS_IN_JSAMPLE == 8
  35. #define CONST_BITS  13
  36. #define PASS1_BITS  2
  37. #else
  38. #define CONST_BITS  13
  39. #define PASS1_BITS  1 /* lose a little precision to avoid overflow */
  40. #endif
  41. /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
  42.  * causing a lot of useless floating-point operations at run time.
  43.  * To get around this we use the following pre-calculated constants.
  44.  * If you change CONST_BITS you may want to add appropriate values.
  45.  * (With a reasonable C compiler, you can just rely on the FIX() macro...)
  46.  */
  47. #if CONST_BITS == 13
  48. #define FIX_0_211164243  ((INT32)  1730) /* FIX(0.211164243) */
  49. #define FIX_0_509795579  ((INT32)  4176) /* FIX(0.509795579) */
  50. #define FIX_0_601344887  ((INT32)  4926) /* FIX(0.601344887) */
  51. #define FIX_0_720959822  ((INT32)  5906) /* FIX(0.720959822) */
  52. #define FIX_0_765366865  ((INT32)  6270) /* FIX(0.765366865) */
  53. #define FIX_0_850430095  ((INT32)  6967) /* FIX(0.850430095) */
  54. #define FIX_0_899976223  ((INT32)  7373) /* FIX(0.899976223) */
  55. #define FIX_1_061594337  ((INT32)  8697) /* FIX(1.061594337) */
  56. #define FIX_1_272758580  ((INT32)  10426) /* FIX(1.272758580) */
  57. #define FIX_1_451774981  ((INT32)  11893) /* FIX(1.451774981) */
  58. #define FIX_1_847759065  ((INT32)  15137) /* FIX(1.847759065) */
  59. #define FIX_2_172734803  ((INT32)  17799) /* FIX(2.172734803) */
  60. #define FIX_2_562915447  ((INT32)  20995) /* FIX(2.562915447) */
  61. #define FIX_3_624509785  ((INT32)  29692) /* FIX(3.624509785) */
  62. #else
  63. #define FIX_0_211164243  FIX(0.211164243)
  64. #define FIX_0_509795579  FIX(0.509795579)
  65. #define FIX_0_601344887  FIX(0.601344887)
  66. #define FIX_0_720959822  FIX(0.720959822)
  67. #define FIX_0_765366865  FIX(0.765366865)
  68. #define FIX_0_850430095  FIX(0.850430095)
  69. #define FIX_0_899976223  FIX(0.899976223)
  70. #define FIX_1_061594337  FIX(1.061594337)
  71. #define FIX_1_272758580  FIX(1.272758580)
  72. #define FIX_1_451774981  FIX(1.451774981)
  73. #define FIX_1_847759065  FIX(1.847759065)
  74. #define FIX_2_172734803  FIX(2.172734803)
  75. #define FIX_2_562915447  FIX(2.562915447)
  76. #define FIX_3_624509785  FIX(3.624509785)
  77. #endif
  78. /* Multiply an INT32 variable by an INT32 constant to yield an INT32 result.
  79.  * For 8-bit samples with the recommended scaling, all the variable
  80.  * and constant values involved are no more than 16 bits wide, so a
  81.  * 16x16->32 bit multiply can be used instead of a full 32x32 multiply.
  82.  * For 12-bit samples, a full 32-bit multiplication will be needed.
  83.  */
  84. #if BITS_IN_JSAMPLE == 8
  85. #define MULTIPLY(var,const)  MULTIPLY16C16(var,const)
  86. #else
  87. #define MULTIPLY(var,const)  ((var) * (const))
  88. #endif
  89. /* Dequantize a coefficient by multiplying it by the multiplier-table
  90.  * entry; produce an int result.  In this module, both inputs and result
  91.  * are 16 bits or less, so either int or short multiply will work.
  92.  */
  93. #define DEQUANTIZE(coef,quantval)  (((ISLOW_MULT_TYPE) (coef)) * (quantval))
  94. /*
  95.  * Perform dequantization and inverse DCT on one block of coefficients,
  96.  * producing a reduced-size 4x4 output block.
  97.  */
  98. GLOBAL void
  99. jpeg_idct_4x4 (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  100.        JCOEFPTR coef_block,
  101.        JSAMPARRAY output_buf, JDIMENSION output_col)
  102. {
  103.   INT32 tmp0, tmp2, tmp10, tmp12;
  104.   INT32 z1, z2, z3, z4;
  105.   JCOEFPTR inptr;
  106.   ISLOW_MULT_TYPE * quantptr;
  107.   int * wsptr;
  108.   JSAMPROW outptr;
  109.   JSAMPLE *range_limit = IDCT_range_limit(cinfo);
  110.   int ctr;
  111.   int workspace[DCTSIZE*4]; /* buffers data between passes */
  112.   SHIFT_TEMPS
  113.   /* Pass 1: process columns from input, store into work array. */
  114.   inptr = coef_block;
  115.   quantptr = (ISLOW_MULT_TYPE *) compptr->dct_table;
  116.   wsptr = workspace;
  117.   for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
  118.     /* Don't bother to process column 4, because second pass won't use it */
  119.     if (ctr == DCTSIZE-4)
  120.       continue;
  121.     if ((inptr[DCTSIZE*1] | inptr[DCTSIZE*2] | inptr[DCTSIZE*3] |
  122.  inptr[DCTSIZE*5] | inptr[DCTSIZE*6] | inptr[DCTSIZE*7]) == 0) {
  123.       /* AC terms all zero; we need not examine term 4 for 4x4 output */
  124.       int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_BITS;
  125.       
  126.       wsptr[DCTSIZE*0] = dcval;
  127.       wsptr[DCTSIZE*1] = dcval;
  128.       wsptr[DCTSIZE*2] = dcval;
  129.       wsptr[DCTSIZE*3] = dcval;
  130.       
  131.       continue;
  132.     }
  133.     
  134.     /* Even part */
  135.     
  136.     tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
  137.     tmp0 <<= (CONST_BITS+1);
  138.     
  139.     z2 = DEQUANTIZE(inptr[DCTSIZE*2], quantptr[DCTSIZE*2]);
  140.     z3 = DEQUANTIZE(inptr[DCTSIZE*6], quantptr[DCTSIZE*6]);
  141.     tmp2 = MULTIPLY(z2, FIX_1_847759065) + MULTIPLY(z3, - FIX_0_765366865);
  142.     
  143.     tmp10 = tmp0 + tmp2;
  144.     tmp12 = tmp0 - tmp2;
  145.     
  146.     /* Odd part */
  147.     
  148.     z1 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
  149.     z2 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
  150.     z3 = DEQUANTIZE(inptr[DCTSIZE*3], quantptr[DCTSIZE*3]);
  151.     z4 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
  152.     
  153.     tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
  154.  + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) */
  155.  + MULTIPLY(z3, - FIX_2_172734803) /* sqrt(2) * (-c1-c5) */
  156.  + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
  157.     
  158.     tmp2 = MULTIPLY(z1, - FIX_0_509795579) /* sqrt(2) * (c7-c5) */
  159.  + MULTIPLY(z2, - FIX_0_601344887) /* sqrt(2) * (c5-c1) */
  160.  + MULTIPLY(z3, FIX_0_899976223) /* sqrt(2) * (c3-c7) */
  161.  + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
  162.     /* Final output stage */
  163.     
  164.     wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp2, CONST_BITS-PASS1_BITS+1);
  165.     wsptr[DCTSIZE*3] = (int) DESCALE(tmp10 - tmp2, CONST_BITS-PASS1_BITS+1);
  166.     wsptr[DCTSIZE*1] = (int) DESCALE(tmp12 + tmp0, CONST_BITS-PASS1_BITS+1);
  167.     wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 - tmp0, CONST_BITS-PASS1_BITS+1);
  168.   }
  169.   
  170.   /* Pass 2: process 4 rows from work array, store into output array. */
  171.   wsptr = workspace;
  172.   for (ctr = 0; ctr < 4; ctr++) {
  173.     outptr = output_buf[ctr] + output_col;
  174.     /* It's not clear whether a zero row test is worthwhile here ... */
  175. #ifndef NO_ZERO_ROW_TEST
  176.     if ((wsptr[1] | wsptr[2] | wsptr[3] | wsptr[5] | wsptr[6] |
  177.  wsptr[7]) == 0) {
  178.       /* AC terms all zero */
  179.       JSAMPLE dcval = range_limit[(int) DESCALE((INT32) wsptr[0], PASS1_BITS+3)
  180.   & RANGE_MASK];
  181.       
  182.       outptr[0] = dcval;
  183.       outptr[1] = dcval;
  184.       outptr[2] = dcval;
  185.       outptr[3] = dcval;
  186.       
  187.       wsptr += DCTSIZE; /* advance pointer to next row */
  188.       continue;
  189.     }
  190. #endif
  191.     
  192.     /* Even part */
  193.     
  194.     tmp0 = ((INT32) wsptr[0]) << (CONST_BITS+1);
  195.     
  196.     tmp2 = MULTIPLY((INT32) wsptr[2], FIX_1_847759065)
  197.  + MULTIPLY((INT32) wsptr[6], - FIX_0_765366865);
  198.     
  199.     tmp10 = tmp0 + tmp2;
  200.     tmp12 = tmp0 - tmp2;
  201.     
  202.     /* Odd part */
  203.     
  204.     z1 = (INT32) wsptr[7];
  205.     z2 = (INT32) wsptr[5];
  206.     z3 = (INT32) wsptr[3];
  207.     z4 = (INT32) wsptr[1];
  208.     
  209.     tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
  210.  + MULTIPLY(z2, FIX_1_451774981) /* sqrt(2) * (c3+c7) */
  211.  + MULTIPLY(z3, - FIX_2_172734803) /* sqrt(2) * (-c1-c5) */
  212.  + MULTIPLY(z4, FIX_1_061594337); /* sqrt(2) * (c5+c7) */
  213.     
  214.     tmp2 = MULTIPLY(z1, - FIX_0_509795579) /* sqrt(2) * (c7-c5) */
  215.  + MULTIPLY(z2, - FIX_0_601344887) /* sqrt(2) * (c5-c1) */
  216.  + MULTIPLY(z3, FIX_0_899976223) /* sqrt(2) * (c3-c7) */
  217.  + MULTIPLY(z4, FIX_2_562915447); /* sqrt(2) * (c1+c3) */
  218.     /* Final output stage */
  219.     
  220.     outptr[0] = range_limit[(int) DESCALE(tmp10 + tmp2,
  221.   CONST_BITS+PASS1_BITS+3+1)
  222.     & RANGE_MASK];
  223.     outptr[3] = range_limit[(int) DESCALE(tmp10 - tmp2,
  224.   CONST_BITS+PASS1_BITS+3+1)
  225.     & RANGE_MASK];
  226.     outptr[1] = range_limit[(int) DESCALE(tmp12 + tmp0,
  227.   CONST_BITS+PASS1_BITS+3+1)
  228.     & RANGE_MASK];
  229.     outptr[2] = range_limit[(int) DESCALE(tmp12 - tmp0,
  230.   CONST_BITS+PASS1_BITS+3+1)
  231.     & RANGE_MASK];
  232.     
  233.     wsptr += DCTSIZE; /* advance pointer to next row */
  234.   }
  235. }
  236. /*
  237.  * Perform dequantization and inverse DCT on one block of coefficients,
  238.  * producing a reduced-size 2x2 output block.
  239.  */
  240. GLOBAL void
  241. jpeg_idct_2x2 (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  242.        JCOEFPTR coef_block,
  243.        JSAMPARRAY output_buf, JDIMENSION output_col)
  244. {
  245.   INT32 tmp0, tmp10, z1;
  246.   JCOEFPTR inptr;
  247.   ISLOW_MULT_TYPE * quantptr;
  248.   int * wsptr;
  249.   JSAMPROW outptr;
  250.   JSAMPLE *range_limit = IDCT_range_limit(cinfo);
  251.   int ctr;
  252.   int workspace[DCTSIZE*2]; /* buffers data between passes */
  253.   SHIFT_TEMPS
  254.   /* Pass 1: process columns from input, store into work array. */
  255.   inptr = coef_block;
  256.   quantptr = (ISLOW_MULT_TYPE *) compptr->dct_table;
  257.   wsptr = workspace;
  258.   for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
  259.     /* Don't bother to process columns 2,4,6 */
  260.     if (ctr == DCTSIZE-2 || ctr == DCTSIZE-4 || ctr == DCTSIZE-6)
  261.       continue;
  262.     if ((inptr[DCTSIZE*1] | inptr[DCTSIZE*3] |
  263.  inptr[DCTSIZE*5] | inptr[DCTSIZE*7]) == 0) {
  264.       /* AC terms all zero; we need not examine terms 2,4,6 for 2x2 output */
  265.       int dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]) << PASS1_BITS;
  266.       
  267.       wsptr[DCTSIZE*0] = dcval;
  268.       wsptr[DCTSIZE*1] = dcval;
  269.       
  270.       continue;
  271.     }
  272.     
  273.     /* Even part */
  274.     
  275.     z1 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
  276.     tmp10 = z1 << (CONST_BITS+2);
  277.     
  278.     /* Odd part */
  279.     z1 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
  280.     tmp0 = MULTIPLY(z1, - FIX_0_720959822); /* sqrt(2) * (c7-c5+c3-c1) */
  281.     z1 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
  282.     tmp0 += MULTIPLY(z1, FIX_0_850430095); /* sqrt(2) * (-c1+c3+c5+c7) */
  283.     z1 = DEQUANTIZE(inptr[DCTSIZE*3], quantptr[DCTSIZE*3]);
  284.     tmp0 += MULTIPLY(z1, - FIX_1_272758580); /* sqrt(2) * (-c1+c3-c5-c7) */
  285.     z1 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
  286.     tmp0 += MULTIPLY(z1, FIX_3_624509785); /* sqrt(2) * (c1+c3+c5+c7) */
  287.     /* Final output stage */
  288.     
  289.     wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp0, CONST_BITS-PASS1_BITS+2);
  290.     wsptr[DCTSIZE*1] = (int) DESCALE(tmp10 - tmp0, CONST_BITS-PASS1_BITS+2);
  291.   }
  292.   
  293.   /* Pass 2: process 2 rows from work array, store into output array. */
  294.   wsptr = workspace;
  295.   for (ctr = 0; ctr < 2; ctr++) {
  296.     outptr = output_buf[ctr] + output_col;
  297.     /* It's not clear whether a zero row test is worthwhile here ... */
  298. #ifndef NO_ZERO_ROW_TEST
  299.     if ((wsptr[1] | wsptr[3] | wsptr[5] | wsptr[7]) == 0) {
  300.       /* AC terms all zero */
  301.       JSAMPLE dcval = range_limit[(int) DESCALE((INT32) wsptr[0], PASS1_BITS+3)
  302.   & RANGE_MASK];
  303.       
  304.       outptr[0] = dcval;
  305.       outptr[1] = dcval;
  306.       
  307.       wsptr += DCTSIZE; /* advance pointer to next row */
  308.       continue;
  309.     }
  310. #endif
  311.     
  312.     /* Even part */
  313.     
  314.     tmp10 = ((INT32) wsptr[0]) << (CONST_BITS+2);
  315.     
  316.     /* Odd part */
  317.     tmp0 = MULTIPLY((INT32) wsptr[7], - FIX_0_720959822) /* sqrt(2) * (c7-c5+c3-c1) */
  318.  + MULTIPLY((INT32) wsptr[5], FIX_0_850430095) /* sqrt(2) * (-c1+c3+c5+c7) */
  319.  + MULTIPLY((INT32) wsptr[3], - FIX_1_272758580) /* sqrt(2) * (-c1+c3-c5-c7) */
  320.  + MULTIPLY((INT32) wsptr[1], FIX_3_624509785); /* sqrt(2) * (c1+c3+c5+c7) */
  321.     /* Final output stage */
  322.     
  323.     outptr[0] = range_limit[(int) DESCALE(tmp10 + tmp0,
  324.   CONST_BITS+PASS1_BITS+3+2)
  325.     & RANGE_MASK];
  326.     outptr[1] = range_limit[(int) DESCALE(tmp10 - tmp0,
  327.   CONST_BITS+PASS1_BITS+3+2)
  328.     & RANGE_MASK];
  329.     
  330.     wsptr += DCTSIZE; /* advance pointer to next row */
  331.   }
  332. }
  333. /*
  334.  * Perform dequantization and inverse DCT on one block of coefficients,
  335.  * producing a reduced-size 1x1 output block.
  336.  */
  337. GLOBAL void
  338. jpeg_idct_1x1 (j_decompress_ptr cinfo, jpeg_component_info * compptr,
  339.        JCOEFPTR coef_block,
  340.        JSAMPARRAY output_buf, JDIMENSION output_col)
  341. {
  342.   int dcval;
  343.   ISLOW_MULT_TYPE * quantptr;
  344.   JSAMPLE *range_limit = IDCT_range_limit(cinfo);
  345.   SHIFT_TEMPS
  346.   /* We hardly need an inverse DCT routine for this: just take the
  347.    * average pixel value, which is one-eighth of the DC coefficient.
  348.    */
  349.   quantptr = (ISLOW_MULT_TYPE *) compptr->dct_table;
  350.   dcval = DEQUANTIZE(coef_block[0], quantptr[0]);
  351.   dcval = (int) DESCALE((INT32) dcval, 3);
  352.   output_buf[0][output_col] = range_limit[dcval & RANGE_MASK];
  353. }
  354. #endif /* IDCT_SCALING_SUPPORTED */