JFDCTFST.c
上传用户: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.  * jfdctfst.c
  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 file contains a fast, not so accurate integer implementation of the
  28.  * forward DCT (Discrete Cosine Transform).
  29.  *
  30.  * A 2-D DCT can be done by 1-D DCT on each row followed by 1-D DCT
  31.  * on each column.  Direct algorithms are also available, but they are
  32.  * much more complex and seem not to be any faster when reduced to code.
  33.  *
  34.  * This implementation is based on Arai, Agui, and Nakajima's algorithm for
  35.  * scaled DCT.  Their original paper (Trans. IEICE E-71(11):1095) is in
  36.  * Japanese, but the algorithm is described in the Pennebaker & Mitchell
  37.  * JPEG textbook (see REFERENCES section in file README).  The following code
  38.  * is based directly on figure 4-8 in P&M.
  39.  * While an 8-point DCT cannot be done in less than 11 multiplies, it is
  40.  * possible to arrange the computation so that many of the multiplies are
  41.  * simple scalings of the final outputs.  These multiplies can then be
  42.  * folded into the multiplications or divisions by the JPEG quantization
  43.  * table entries.  The AA&N method leaves only 5 multiplies and 29 adds
  44.  * to be done in the DCT itself.
  45.  * The primary disadvantage of this method is that with fixed-point math,
  46.  * accuracy is lost due to imprecise representation of the scaled
  47.  * quantization values.  The smaller the quantization table entry, the less
  48.  * precise the scaled value, so this implementation does worse with high-
  49.  * quality-setting files than with low-quality ones.
  50.  */
  51. #define JPEG_INTERNALS
  52. #include "jinclude.h"
  53. #include "jpeglib.h"
  54. #include "jdct.h" /* Private declarations for DCT subsystem */
  55. #ifdef DCT_IFAST_SUPPORTED
  56. /*
  57.  * This module is specialized to the case DCTSIZE = 8.
  58.  */
  59. #if DCTSIZE != 8
  60.   Sorry, this code only copes with 8x8 DCTs. /* deliberate syntax err */
  61. #endif
  62. /* Scaling decisions are generally the same as in the LL&M algorithm;
  63.  * see jfdctint.c for more details.  However, we choose to descale
  64.  * (right shift) multiplication products as soon as they are formed,
  65.  * rather than carrying additional fractional bits into subsequent additions.
  66.  * This compromises accuracy slightly, but it lets us save a few shifts.
  67.  * More importantly, 16-bit arithmetic is then adequate (for 8-bit samples)
  68.  * everywhere except in the multiplications proper; this saves a good deal
  69.  * of work on 16-bit-int machines.
  70.  *
  71.  * Again to save a few shifts, the intermediate results between pass 1 and
  72.  * pass 2 are not upscaled, but are represented only to integral precision.
  73.  *
  74.  * A final compromise is to represent the multiplicative constants to only
  75.  * 8 fractional bits, rather than 13.  This saves some shifting work on some
  76.  * machines, and may also reduce the cost of multiplication (since there
  77.  * are fewer one-bits in the constants).
  78.  */
  79. #define CONST_BITS  8
  80. /* Some C compilers fail to reduce "FIX(constant)" at compile time, thus
  81.  * causing a lot of useless floating-point operations at run time.
  82.  * To get around this we use the following pre-calculated constants.
  83.  * If you change CONST_BITS you may want to add appropriate values.
  84.  * (With a reasonable C compiler, you can just rely on the FIX() macro...)
  85.  */
  86. #if CONST_BITS == 8
  87. #define FIX_0_382683433  ((long)   98) /* FIX(0.382683433) */
  88. #define FIX_0_541196100  ((long)  139) /* FIX(0.541196100) */
  89. #define FIX_0_707106781  ((long)  181) /* FIX(0.707106781) */
  90. #define FIX_1_306562965  ((long)  334) /* FIX(1.306562965) */
  91. #else
  92. #define FIX_0_382683433  FIX(0.382683433)
  93. #define FIX_0_541196100  FIX(0.541196100)
  94. #define FIX_0_707106781  FIX(0.707106781)
  95. #define FIX_1_306562965  FIX(1.306562965)
  96. #endif
  97. /* We can gain a little more speed, with a further compromise in accuracy,
  98.  * by omitting the addition in a descaling shift.  This yields an incorrectly
  99.  * rounded result half the time...
  100.  */
  101. #ifndef USE_ACCURATE_ROUNDING
  102. #undef DESCALE
  103. #define DESCALE(x,n)  RIGHT_SHIFT(x, n)
  104. #endif
  105. /* Multiply a DCTELEM variable by an long constant, and immediately
  106.  * descale to yield a DCTELEM result.
  107.  */
  108. #define MULTIPLY(var,const)  ((DCTELEM) DESCALE((var) * (const), CONST_BITS))
  109. /*
  110.  * Perform the forward DCT on one block of samples.
  111.  */
  112. GLOBAL(void)
  113. jpeg_fdct_ifast (DCTELEM * data)
  114. {
  115.   DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7;
  116.   DCTELEM tmp10, tmp11, tmp12, tmp13;
  117.   DCTELEM z1, z2, z3, z4, z5, z11, z13;
  118.   DCTELEM *dataptr;
  119.   int ctr;
  120.   SHIFT_TEMPS
  121.   /* Pass 1: process rows. */
  122.   dataptr = data;
  123.   for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  124.     tmp0 = dataptr[0] + dataptr[7];
  125.     tmp7 = dataptr[0] - dataptr[7];
  126.     tmp1 = dataptr[1] + dataptr[6];
  127.     tmp6 = dataptr[1] - dataptr[6];
  128.     tmp2 = dataptr[2] + dataptr[5];
  129.     tmp5 = dataptr[2] - dataptr[5];
  130.     tmp3 = dataptr[3] + dataptr[4];
  131.     tmp4 = dataptr[3] - dataptr[4];
  132.     
  133.     /* Even part */
  134.     
  135.     tmp10 = tmp0 + tmp3; /* phase 2 */
  136.     tmp13 = tmp0 - tmp3;
  137.     tmp11 = tmp1 + tmp2;
  138.     tmp12 = tmp1 - tmp2;
  139.     
  140.     dataptr[0] = tmp10 + tmp11; /* phase 3 */
  141.     dataptr[4] = tmp10 - tmp11;
  142.     
  143.     z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
  144.     dataptr[2] = tmp13 + z1; /* phase 5 */
  145.     dataptr[6] = tmp13 - z1;
  146.     
  147.     /* Odd part */
  148.     tmp10 = tmp4 + tmp5; /* phase 2 */
  149.     tmp11 = tmp5 + tmp6;
  150.     tmp12 = tmp6 + tmp7;
  151.     /* The rotator is modified from fig 4-8 to avoid extra negations. */
  152.     z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
  153.     z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
  154.     z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
  155.     z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
  156.     z11 = tmp7 + z3; /* phase 5 */
  157.     z13 = tmp7 - z3;
  158.     dataptr[5] = z13 + z2; /* phase 6 */
  159.     dataptr[3] = z13 - z2;
  160.     dataptr[1] = z11 + z4;
  161.     dataptr[7] = z11 - z4;
  162.     dataptr += DCTSIZE; /* advance pointer to next row */
  163.   }
  164.   /* Pass 2: process columns. */
  165.   dataptr = data;
  166.   for (ctr = DCTSIZE-1; ctr >= 0; ctr--) {
  167.     tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
  168.     tmp7 = dataptr[DCTSIZE*0] - dataptr[DCTSIZE*7];
  169.     tmp1 = dataptr[DCTSIZE*1] + dataptr[DCTSIZE*6];
  170.     tmp6 = dataptr[DCTSIZE*1] - dataptr[DCTSIZE*6];
  171.     tmp2 = dataptr[DCTSIZE*2] + dataptr[DCTSIZE*5];
  172.     tmp5 = dataptr[DCTSIZE*2] - dataptr[DCTSIZE*5];
  173.     tmp3 = dataptr[DCTSIZE*3] + dataptr[DCTSIZE*4];
  174.     tmp4 = dataptr[DCTSIZE*3] - dataptr[DCTSIZE*4];
  175.     
  176.     /* Even part */
  177.     
  178.     tmp10 = tmp0 + tmp3; /* phase 2 */
  179.     tmp13 = tmp0 - tmp3;
  180.     tmp11 = tmp1 + tmp2;
  181.     tmp12 = tmp1 - tmp2;
  182.     
  183.     dataptr[DCTSIZE*0] = tmp10 + tmp11; /* phase 3 */
  184.     dataptr[DCTSIZE*4] = tmp10 - tmp11;
  185.     
  186.     z1 = MULTIPLY(tmp12 + tmp13, FIX_0_707106781); /* c4 */
  187.     dataptr[DCTSIZE*2] = tmp13 + z1; /* phase 5 */
  188.     dataptr[DCTSIZE*6] = tmp13 - z1;
  189.     
  190.     /* Odd part */
  191.     tmp10 = tmp4 + tmp5; /* phase 2 */
  192.     tmp11 = tmp5 + tmp6;
  193.     tmp12 = tmp6 + tmp7;
  194.     /* The rotator is modified from fig 4-8 to avoid extra negations. */
  195.     z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
  196.     z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
  197.     z4 = MULTIPLY(tmp12, FIX_1_306562965) + z5; /* c2+c6 */
  198.     z3 = MULTIPLY(tmp11, FIX_0_707106781); /* c4 */
  199.     z11 = tmp7 + z3; /* phase 5 */
  200.     z13 = tmp7 - z3;
  201.     dataptr[DCTSIZE*5] = z13 + z2; /* phase 6 */
  202.     dataptr[DCTSIZE*3] = z13 - z2;
  203.     dataptr[DCTSIZE*1] = z11 + z4;
  204.     dataptr[DCTSIZE*7] = z11 - z4;
  205.     dataptr++; /* advance pointer to next column */
  206.   }
  207. }
  208. #endif /* DCT_IFAST_SUPPORTED */