Idct.cpp
上传用户:panstart
上传日期:2022-04-12
资源大小:199k
文件大小:7k
源码类别:

IP电话/视频会议

开发平台:

C++ Builder

  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. //
  4. //    Project     : VideoNet version 1.1.
  5. //    Description : Peer to Peer Video Conferencing over the LAN.
  6. //   Author      : Nagareshwar Y Talekar ( nsry2002@yahoo.co.in)
  7. //    Date        : 15-6-2004.
  8. //
  9. //    This is the modified version of tmndecode (H.263 decoder) 
  10. //    written by Karl & Robert.It was in ANSI C. I have converted into C++
  11. //    so that it can be integrated into any windows application. I have 
  12. //    removed some of the files which had display and file storing 
  13. //    functions.I have removed the unnecessary code and also added some
  14. //    new files..
  15. //   Original library dealt with files. Input & Output , both were files.
  16. //    I have done some major changes so that it can be used for real time 
  17. //    decoding process. Now one can use this library for decoding H263 frames. 
  18. //
  19. //
  20. //    File description : 
  21. //    Name    : Idct.cpp
  22. //
  23. /////////////////////////////////////////////////////////////////////////////
  24. /************************************************************************
  25.  *
  26.  *  idct.c, inverse fast DCT for tmndecode (H.263 decoder)
  27.  *  Copyright (C) 1996  Telenor R&D, Norway
  28.  *        Karl Olav Lillevold <Karl.Lillevold@nta.no>
  29.  *
  30.  *  This program is free software; you can redistribute it and/or modify
  31.  *  it under the terms of the GNU General Public License as published by
  32.  *  the Free Software Foundation; either version 2 of the License, or
  33.  *  (at your option) any later version.
  34.  *
  35.  *  This program is distributed in the hope that it will be useful,
  36.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  37.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  38.  *  GNU General Public License for more details.
  39.  *
  40.  *  You should have received a copy of the GNU General Public License
  41.  *  along with this program; if not, write to the Free Software
  42.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  43.  *
  44.  *  Karl Olav Lillevold               <Karl.Lillevold@nta.no>
  45.  *  Telenor Research and Development
  46.  *  P.O.Box 83                        tel.:   +47 63 84 84 00
  47.  *  N-2007 Kjeller, Norway            fax.:   +47 63 81 00 76
  48.  *
  49.  *  Robert Danielsen                  e-mail: Robert.Danielsen@nta.no
  50.  *  Telenor Research and Development  www:    http://www.nta.no/brukere/DVC/
  51.  *  P.O.Box 83                        tel.:   +47 63 84 84 00
  52.  *  N-2007 Kjeller, Norway            fax.:   +47 63 81 00 76
  53.  *  
  54.  ************************************************************************/
  55. /*
  56.  * based on mpeg2decode, (C) 1994, MPEG Software Simulation Group
  57.  * and mpeg2play, (C) 1994 Stefan Eckart
  58.  *                         <stefan@lis.e-technik.tu-muenchen.de>
  59.  *
  60.  */
  61. /**********************************************************/
  62. /* inverse two dimensional DCT, Chen-Wang algorithm       */
  63. /* (cf. IEEE ASSP-32, pp. 803-816, Aug. 1984)             */
  64. /* 32-bit integer arithmetic (8 bit coefficients)         */
  65. /* 11 mults, 29 adds per DCT                              */
  66. /*                                      sE, 18.8.91       */
  67. /**********************************************************/
  68. /* coefficients extended to 12 bit for IEEE1180-1990      */
  69. /* compliance                           sE,  2.1.94       */
  70. /**********************************************************/
  71. /* this code assumes >> to be a two's-complement arithmetic */
  72. /* right shift: (-2)>>1 == -1 , (-3)>>1 == -2               */
  73. #include "Idct.h"
  74. /* row (horizontal) IDCT
  75.  *
  76.  *           7                       pi         1
  77.  * dst[k] = sum c[l] * src[l] * cos( -- * ( k + - ) * l )
  78.  *          l=0                      8          2
  79.  *
  80.  * where: c[0]    = 128
  81.  *        c[1..7] = 128*sqrt(2)
  82.  */
  83. static void idctrow(short *blk)
  84. {
  85.   int x0, x1, x2, x3, x4, x5, x6, x7, x8;
  86.   /* shortcut */
  87.   if (!((x1 = blk[4]<<11) | (x2 = blk[6]) | (x3 = blk[2]) |
  88.         (x4 = blk[1]) | (x5 = blk[7]) | (x6 = blk[5]) | (x7 = blk[3])))
  89.   {
  90.     blk[0]=blk[1]=blk[2]=blk[3]=blk[4]=blk[5]=blk[6]=blk[7]=blk[0]<<3;
  91.     return;
  92.   }
  93.   x0 = (blk[0]<<11) + 128; /* for proper rounding in the fourth stage */
  94.   /* first stage */
  95.   x8 = W7*(x4+x5);
  96.   x4 = x8 + (W1-W7)*x4;
  97.   x5 = x8 - (W1+W7)*x5;
  98.   x8 = W3*(x6+x7);
  99.   x6 = x8 - (W3-W5)*x6;
  100.   x7 = x8 - (W3+W5)*x7;
  101.   
  102.   /* second stage */
  103.   x8 = x0 + x1;
  104.   x0 -= x1;
  105.   x1 = W6*(x3+x2);
  106.   x2 = x1 - (W2+W6)*x2;
  107.   x3 = x1 + (W2-W6)*x3;
  108.   x1 = x4 + x6;
  109.   x4 -= x6;
  110.   x6 = x5 + x7;
  111.   x5 -= x7;
  112.   
  113.   /* third stage */
  114.   x7 = x8 + x3;
  115.   x8 -= x3;
  116.   x3 = x0 + x2;
  117.   x0 -= x2;
  118.   x2 = (181*(x4+x5)+128)>>8;
  119.   x4 = (181*(x4-x5)+128)>>8;
  120.   
  121.   /* fourth stage */
  122.   blk[0] = (x7+x1)>>8;
  123.   blk[1] = (x3+x2)>>8;
  124.   blk[2] = (x0+x4)>>8;
  125.   blk[3] = (x8+x6)>>8;
  126.   blk[4] = (x8-x6)>>8;
  127.   blk[5] = (x0-x4)>>8;
  128.   blk[6] = (x3-x2)>>8;
  129.   blk[7] = (x7-x1)>>8;
  130. }
  131. /* column (vertical) IDCT
  132.  *
  133.  *             7                         pi         1
  134.  * dst[8*k] = sum c[l] * src[8*l] * cos( -- * ( k + - ) * l )
  135.  *            l=0                        8          2
  136.  *
  137.  * where: c[0]    = 1/1024
  138.  *        c[1..7] = (1/1024)*sqrt(2)
  139.  */
  140. static void idctcol(short *blk)
  141. {
  142.   int x0, x1, x2, x3, x4, x5, x6, x7, x8;
  143.   /* shortcut */
  144.   if (!((x1 = (blk[8*4]<<8)) | (x2 = blk[8*6]) | (x3 = blk[8*2]) |
  145.         (x4 = blk[8*1]) | (x5 = blk[8*7]) | (x6 = blk[8*5]) | (x7 = blk[8*3])))
  146.   {
  147.     blk[8*0]=blk[8*1]=blk[8*2]=blk[8*3]=blk[8*4]=blk[8*5]=blk[8*6]=blk[8*7]=
  148.       iclp[(blk[8*0]+32)>>6];
  149.     return;
  150.   }
  151.   x0 = (blk[8*0]<<8) + 8192;
  152.   /* first stage */
  153.   x8 = W7*(x4+x5) + 4;
  154.   x4 = (x8+(W1-W7)*x4)>>3;
  155.   x5 = (x8-(W1+W7)*x5)>>3;
  156.   x8 = W3*(x6+x7) + 4;
  157.   x6 = (x8-(W3-W5)*x6)>>3;
  158.   x7 = (x8-(W3+W5)*x7)>>3;
  159.   
  160.   /* second stage */
  161.   x8 = x0 + x1;
  162.   x0 -= x1;
  163.   x1 = W6*(x3+x2) + 4;
  164.   x2 = (x1-(W2+W6)*x2)>>3;
  165.   x3 = (x1+(W2-W6)*x3)>>3;
  166.   x1 = x4 + x6;
  167.   x4 -= x6;
  168.   x6 = x5 + x7;
  169.   x5 -= x7;
  170.   
  171.   /* third stage */
  172.   x7 = x8 + x3;
  173.   x8 -= x3;
  174.   x3 = x0 + x2;
  175.   x0 -= x2;
  176.   x2 = (181*(x4+x5)+128)>>8;
  177.   x4 = (181*(x4-x5)+128)>>8;
  178.   
  179.   /* fourth stage */
  180.   blk[8*0] = iclp[(x7+x1)>>14];
  181.   blk[8*1] = iclp[(x3+x2)>>14];
  182.   blk[8*2] = iclp[(x0+x4)>>14];
  183.   blk[8*3] = iclp[(x8+x6)>>14];
  184.   blk[8*4] = iclp[(x8-x6)>>14];
  185.   blk[8*5] = iclp[(x0-x4)>>14];
  186.   blk[8*6] = iclp[(x3-x2)>>14];
  187.   blk[8*7] = iclp[(x7-x1)>>14];
  188. }
  189. /* two dimensional inverse discrete cosine transform */
  190. void idct(short *block)
  191. {
  192.   int i;
  193.   for (i=0; i<8; i++)
  194.     idctrow(block+8*i);
  195.   for (i=0; i<8; i++)
  196.     idctcol(block+i);
  197. }
  198. void init_idct()
  199. {
  200.   int i;
  201.   iclp = iclip+512;
  202.   for (i= -512; i<512; i++)
  203.     iclp[i] = (i<-256) ? -256 : ((i>255) ? 255 : i);
  204. }