idct.c
上传用户:hkgotone
上传日期:2013-02-17
资源大小:293k
文件大小:6k
源码类别:

Windows Mobile

开发平台:

C/C++

  1. /* idct.c, inverse fast discrete cosine transform                           */
  2. /* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
  3. /*
  4.  * Disclaimer of Warranty
  5.  *
  6.  * These software programs are available to the user without any license fee or
  7.  * royalty on an "as is" basis.  The MPEG Software Simulation Group disclaims
  8.  * any and all warranties, whether express, implied, or statuary, including any
  9.  * implied warranties or merchantability or of fitness for a particular
  10.  * purpose.  In no event shall the copyright-holder be liable for any
  11.  * incidental, punitive, or consequential damages of any kind whatsoever
  12.  * arising from the use of these programs.
  13.  *
  14.  * This disclaimer of warranty extends to the user of these programs and user's
  15.  * customers, employees, agents, transferees, successors, and assigns.
  16.  *
  17.  * The MPEG Software Simulation Group does not represent or warrant that the
  18.  * programs furnished hereunder are free of infringement of any third-party
  19.  * patents.
  20.  *
  21.  * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
  22.  * are subject to royalty fees to patent holders.  Many of these patents are
  23.  * general enough such that they are unavoidable regardless of implementation
  24.  * design.
  25.  *
  26.  */
  27. /**********************************************************/
  28. /* inverse two dimensional DCT, Chen-Wang algorithm       */
  29. /* (cf. IEEE ASSP-32, pp. 803-816, Aug. 1984)             */
  30. /* 32-bit integer arithmetic (8 bit coefficients)         */
  31. /* 11 mults, 29 adds per DCT                              */
  32. /*                                      sE, 18.8.91       */
  33. /**********************************************************/
  34. /* coefficients extended to 12 bit for IEEE1180-1990      */
  35. /* compliance                           sE,  2.1.94       */
  36. /**********************************************************/
  37. /* this code assumes >> to be a two's-complement arithmetic */
  38. /* right shift: (-2)>>1 == -1 , (-3)>>1 == -2               */
  39. #include "config.h"
  40. #define W1 2841 /* 2048*sqrt(2)*cos(1*pi/16) */
  41. #define W2 2676 /* 2048*sqrt(2)*cos(2*pi/16) */
  42. #define W3 2408 /* 2048*sqrt(2)*cos(3*pi/16) */
  43. #define W5 1609 /* 2048*sqrt(2)*cos(5*pi/16) */
  44. #define W6 1108 /* 2048*sqrt(2)*cos(6*pi/16) */
  45. #define W7 565  /* 2048*sqrt(2)*cos(7*pi/16) */
  46. /* global declarations */
  47. void init_idct _ANSI_ARGS_((void));
  48. void idct _ANSI_ARGS_((short *block));
  49. /* private data */
  50. static short iclip[1024]; /* clipping table */
  51. static short *iclp;
  52. /* private prototypes */
  53. static void idctrow _ANSI_ARGS_((short *blk));
  54. static void idctcol _ANSI_ARGS_((short *blk));
  55. /* row (horizontal) IDCT
  56.  *
  57.  *           7                       pi         1
  58.  * dst[k] = sum c[l] * src[l] * cos( -- * ( k + - ) * l )
  59.  *          l=0                      8          2
  60.  *
  61.  * where: c[0]    = 128
  62.  *        c[1..7] = 128*sqrt(2)
  63.  */
  64. static void idctrow(blk)
  65. short *blk;
  66. {
  67.   int x0, x1, x2, x3, x4, x5, x6, x7, x8;
  68.   /* shortcut */
  69.   if (!((x1 = blk[4]<<11) | (x2 = blk[6]) | (x3 = blk[2]) |
  70.         (x4 = blk[1]) | (x5 = blk[7]) | (x6 = blk[5]) | (x7 = blk[3])))
  71.   {
  72.     blk[0]=blk[1]=blk[2]=blk[3]=blk[4]=blk[5]=blk[6]=blk[7]=blk[0]<<3;
  73.     return;
  74.   }
  75.   x0 = (blk[0]<<11) + 128; /* for proper rounding in the fourth stage */
  76.   /* first stage */
  77.   x8 = W7*(x4+x5);
  78.   x4 = x8 + (W1-W7)*x4;
  79.   x5 = x8 - (W1+W7)*x5;
  80.   x8 = W3*(x6+x7);
  81.   x6 = x8 - (W3-W5)*x6;
  82.   x7 = x8 - (W3+W5)*x7;
  83.   
  84.   /* second stage */
  85.   x8 = x0 + x1;
  86.   x0 -= x1;
  87.   x1 = W6*(x3+x2);
  88.   x2 = x1 - (W2+W6)*x2;
  89.   x3 = x1 + (W2-W6)*x3;
  90.   x1 = x4 + x6;
  91.   x4 -= x6;
  92.   x6 = x5 + x7;
  93.   x5 -= x7;
  94.   
  95.   /* third stage */
  96.   x7 = x8 + x3;
  97.   x8 -= x3;
  98.   x3 = x0 + x2;
  99.   x0 -= x2;
  100.   x2 = (181*(x4+x5)+128)>>8;
  101.   x4 = (181*(x4-x5)+128)>>8;
  102.   
  103.   /* fourth stage */
  104.   blk[0] = (x7+x1)>>8;
  105.   blk[1] = (x3+x2)>>8;
  106.   blk[2] = (x0+x4)>>8;
  107.   blk[3] = (x8+x6)>>8;
  108.   blk[4] = (x8-x6)>>8;
  109.   blk[5] = (x0-x4)>>8;
  110.   blk[6] = (x3-x2)>>8;
  111.   blk[7] = (x7-x1)>>8;
  112. }
  113. /* column (vertical) IDCT
  114.  *
  115.  *             7                         pi         1
  116.  * dst[8*k] = sum c[l] * src[8*l] * cos( -- * ( k + - ) * l )
  117.  *            l=0                        8          2
  118.  *
  119.  * where: c[0]    = 1/1024
  120.  *        c[1..7] = (1/1024)*sqrt(2)
  121.  */
  122. static void idctcol(blk)
  123. short *blk;
  124. {
  125.   int x0, x1, x2, x3, x4, x5, x6, x7, x8;
  126.   /* shortcut */
  127.   if (!((x1 = (blk[8*4]<<8)) | (x2 = blk[8*6]) | (x3 = blk[8*2]) |
  128.         (x4 = blk[8*1]) | (x5 = blk[8*7]) | (x6 = blk[8*5]) | (x7 = blk[8*3])))
  129.   {
  130.     blk[8*0]=blk[8*1]=blk[8*2]=blk[8*3]=blk[8*4]=blk[8*5]=blk[8*6]=blk[8*7]=
  131.       iclp[(blk[8*0]+32)>>6];
  132.     return;
  133.   }
  134.   x0 = (blk[8*0]<<8) + 8192;
  135.   /* first stage */
  136.   x8 = W7*(x4+x5) + 4;
  137.   x4 = (x8+(W1-W7)*x4)>>3;
  138.   x5 = (x8-(W1+W7)*x5)>>3;
  139.   x8 = W3*(x6+x7) + 4;
  140.   x6 = (x8-(W3-W5)*x6)>>3;
  141.   x7 = (x8-(W3+W5)*x7)>>3;
  142.   
  143.   /* second stage */
  144.   x8 = x0 + x1;
  145.   x0 -= x1;
  146.   x1 = W6*(x3+x2) + 4;
  147.   x2 = (x1-(W2+W6)*x2)>>3;
  148.   x3 = (x1+(W2-W6)*x3)>>3;
  149.   x1 = x4 + x6;
  150.   x4 -= x6;
  151.   x6 = x5 + x7;
  152.   x5 -= x7;
  153.   
  154.   /* third stage */
  155.   x7 = x8 + x3;
  156.   x8 -= x3;
  157.   x3 = x0 + x2;
  158.   x0 -= x2;
  159.   x2 = (181*(x4+x5)+128)>>8;
  160.   x4 = (181*(x4-x5)+128)>>8;
  161.   
  162.   /* fourth stage */
  163.   blk[8*0] = iclp[(x7+x1)>>14];
  164.   blk[8*1] = iclp[(x3+x2)>>14];
  165.   blk[8*2] = iclp[(x0+x4)>>14];
  166.   blk[8*3] = iclp[(x8+x6)>>14];
  167.   blk[8*4] = iclp[(x8-x6)>>14];
  168.   blk[8*5] = iclp[(x0-x4)>>14];
  169.   blk[8*6] = iclp[(x3-x2)>>14];
  170.   blk[8*7] = iclp[(x7-x1)>>14];
  171. }
  172. /* two dimensional inverse discrete cosine transform */
  173. void idct(block)
  174. short *block;
  175. {
  176.   int i;
  177.   for (i=0; i<8; i++)
  178.     idctrow(block+8*i);
  179.   for (i=0; i<8; i++)
  180.     idctcol(block+i);
  181. }
  182. void init_idct()
  183. {
  184.   int i;
  185.   iclp = iclip+512;
  186.   for (i= -512; i<512; i++)
  187.     iclp[i] = (i<-256) ? -256 : ((i>255) ? 255 : i);
  188. }