idct.cc
上传用户:aoeyumen
上传日期:2007-01-06
资源大小:3329k
文件大小:4k
源码类别:

DVD

开发平台:

Unix_Linux

  1. /*
  2.    File: idct.cc
  3. */
  4. /**********************************************************/
  5. /* inverse two dimensional DCT, Chen-Wang algorithm       */
  6. /* (cf. IEEE ASSP-32, pp. 803-816, Aug. 1984)             */
  7. /* 32-bit integer arithmetic (8 bit coefficients)         */
  8. /* 11 mults, 29 adds per DCT                              */
  9. /*                                      sE, 18.8.91       */
  10. /**********************************************************/
  11. /* coefficients extended to 12 bit for IEEE1180-1990      */
  12. /* compliance                           sE,  2.1.94       */
  13. /**********************************************************/
  14. /* this code assumes >> to be a two's-complement arithmetic */
  15. /* right shift: (-2)>>1 == -1 , (-3)>>1 == -2               */
  16. #define W1 2841 /* 2048*sqrt(2)*cos(1*pi/16) */
  17. #define W2 2676 /* 2048*sqrt(2)*cos(2*pi/16) */
  18. #define W3 2408 /* 2048*sqrt(2)*cos(3*pi/16) */
  19. #define W5 1609 /* 2048*sqrt(2)*cos(5*pi/16) */
  20. #define W6 1108 /* 2048*sqrt(2)*cos(6*pi/16) */
  21. #define W7 565  /* 2048*sqrt(2)*cos(7*pi/16) */
  22. #include "idct.hh"
  23. // Constructor
  24. Idct::Idct(){
  25.   iclp = iclip+512;
  26.   for (int i= -512; i<512; i++)
  27.     iclp[i] = (i<-256) ? -256 : ((i>255) ? 255 : i);
  28. }
  29. /* row (horizontal) IDCT
  30.  *
  31.  *           7                       pi         1
  32.  * dst[k] = sum c[l] * src[l] * cos( -- * ( k + - ) * l )
  33.  *          l=0                      8          2
  34.  *
  35.  * where: c[0]    = 128
  36.  *        c[1..7] = 128*sqrt(2)
  37.  */
  38. void Idct::idctrow(short *blk){
  39.   int x0, x1, x2, x3, x4, x5, x6, x7, x8;
  40.   /* shortcut */
  41.   if (!((x1 = blk[4]<<11) | (x2 = blk[6]) | (x3 = blk[2]) |
  42.         (x4 = blk[1]) | (x5 = blk[7]) | (x6 = blk[5]) | (x7 = blk[3])))
  43.   {
  44.     blk[0]=blk[1]=blk[2]=blk[3]=blk[4]=blk[5]=blk[6]=blk[7]=blk[0]<<3;
  45.     return;
  46.   }
  47.   x0 = (blk[0]<<11) + 128; /* for proper rounding in the fourth stage */
  48.   /* first stage */
  49.   x8 = W7*(x4+x5);
  50.   x4 = x8 + (W1-W7)*x4;
  51.   x5 = x8 - (W1+W7)*x5;
  52.   x8 = W3*(x6+x7);
  53.   x6 = x8 - (W3-W5)*x6;
  54.   x7 = x8 - (W3+W5)*x7;
  55.   
  56.   /* second stage */
  57.   x8 = x0 + x1;
  58.   x0 -= x1;
  59.   x1 = W6*(x3+x2);
  60.   x2 = x1 - (W2+W6)*x2;
  61.   x3 = x1 + (W2-W6)*x3;
  62.   x1 = x4 + x6;
  63.   x4 -= x6;
  64.   x6 = x5 + x7;
  65.   x5 -= x7;
  66.   
  67.   /* third stage */
  68.   x7 = x8 + x3;
  69.   x8 -= x3;
  70.   x3 = x0 + x2;
  71.   x0 -= x2;
  72.   x2 = (181*(x4+x5)+128)>>8;
  73.   x4 = (181*(x4-x5)+128)>>8;
  74.   
  75.   /* fourth stage */
  76.   blk[0] = (x7+x1)>>8;
  77.   blk[1] = (x3+x2)>>8;
  78.   blk[2] = (x0+x4)>>8;
  79.   blk[3] = (x8+x6)>>8;
  80.   blk[4] = (x8-x6)>>8;
  81.   blk[5] = (x0-x4)>>8;
  82.   blk[6] = (x3-x2)>>8;
  83.   blk[7] = (x7-x1)>>8;
  84. }
  85. /* column (vertical) IDCT
  86.  *
  87.  *             7                         pi         1
  88.  * dst[8*k] = sum c[l] * src[8*l] * cos( -- * ( k + - ) * l )
  89.  *            l=0                        8          2
  90.  *
  91.  * where: c[0]    = 1/1024
  92.  *        c[1..7] = (1/1024)*sqrt(2)
  93.  */
  94. void Idct::idctcol(short *blk){
  95.   int x0, x1, x2, x3, x4, x5, x6, x7, x8;
  96.   /* shortcut */
  97.   if (!((x1 = (blk[8*4]<<8)) | (x2 = blk[8*6]) | (x3 = blk[8*2]) |
  98.         (x4 = blk[8*1]) | (x5 = blk[8*7]) | (x6 = blk[8*5]) | (x7 = blk[8*3]))){
  99.     blk[8*0]=blk[8*1]=blk[8*2]=blk[8*3]=blk[8*4]=blk[8*5]=blk[8*6]=blk[8*7]=
  100.       (blk[8*0]+32)>>6;
  101.     return;
  102.   }
  103.   x0 = (blk[8*0]<<8) + 8192;
  104.   /* first stage */
  105.   x8 = W7*(x4+x5) + 4;
  106.   x4 = (x8+(W1-W7)*x4)>>3;
  107.   x5 = (x8-(W1+W7)*x5)>>3;
  108.   x8 = W3*(x6+x7) + 4;
  109.   x6 = (x8-(W3-W5)*x6)>>3;
  110.   x7 = (x8-(W3+W5)*x7)>>3;
  111.   
  112.   /* second stage */
  113.   x8 = x0 + x1;
  114.   x0 -= x1;
  115.   x1 = W6*(x3+x2) + 4;
  116.   x2 = (x1-(W2+W6)*x2)>>3;
  117.   x3 = (x1+(W2-W6)*x3)>>3;
  118.   x1 = x4 + x6;
  119.   x4 -= x6;
  120.   x6 = x5 + x7;
  121.   x5 -= x7;
  122.   
  123.   /* third stage */
  124.   x7 = x8 + x3;
  125.   x8 -= x3;
  126.   x3 = x0 + x2;
  127.   x0 -= x2;
  128.   x2 = (181*(x4+x5)+128)>>8;
  129.   x4 = (181*(x4-x5)+128)>>8;
  130.   
  131.   /* fourth stage */
  132.   blk[8*0] = (x7+x1)>>14;
  133.   blk[8*1] = (x3+x2)>>14;
  134.   blk[8*2] = (x0+x4)>>14;
  135.   blk[8*3] = (x8+x6)>>14;
  136.   blk[8*4] = (x8-x6)>>14;
  137.   blk[8*5] = (x0-x4)>>14;
  138.   blk[8*6] = (x3-x2)>>14;
  139.   blk[8*7] = (x7-x1)>>14;
  140. }
  141. // two dimensional inverse discrete cosine transform
  142. void Idct::conversion(short* block){
  143.   int i;
  144.   for (i=0; i<8; i++) idctrow(block+8*i);
  145.   for (i=0; i<8; i++) idctcol(block+i);
  146. }