idct.c
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:9k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual 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.  * MPEG2AVI
  27.  * --------
  28.  * v0.16B33 renamed the initialization function to init_idct_int32()
  29.  * v0.16B32 removed the unused idct_row() and idct_col() functions
  30.  * v0.16B3  changed var declarations to static, to enforce data align
  31.  * v0.16B22  idct_FAST() renamed to idct_int32()
  32.  *        also merged idct_FAST() into a single function, to help VC++
  33.  *        optimize it.
  34.  *        
  35.  * v0.14  changed int to long, to avoid confusion when compiling on x86
  36.  *        platform ( in VC++ "int" -> 32bits )
  37.  */
  38. /**********************************************************/
  39. /* inverse two dimensional DCT, Chen-Wang algorithm       */
  40. /* (cf. IEEE ASSP-32, pp. 803-816, Aug. 1984)             */
  41. /* 32-bit integer arithmetic (8 bit coefficients)         */
  42. /* 11 mults, 29 adds per DCT                              */
  43. /*                                      sE, 18.8.91       */
  44. /**********************************************************/
  45. /* coefficients extended to 12 bit for IEEE1180-1990      */
  46. /* compliance                           sE,  2.1.94       */
  47. /**********************************************************/
  48. /* this code assumes >> to be a two's-complement arithmetic */
  49. /* right shift: (-2)>>1 == -1 , (-3)>>1 == -2               */
  50. //#include <windows.h>
  51. #include "idct.h"
  52. #define W1 2841 /* 2048*sqrt(2)*cos(1*pi/16) */
  53. #define W2 2676 /* 2048*sqrt(2)*cos(2*pi/16) */
  54. #define W3 2408 /* 2048*sqrt(2)*cos(3*pi/16) */
  55. #define W5 1609 /* 2048*sqrt(2)*cos(5*pi/16) */
  56. #define W6 1108 /* 2048*sqrt(2)*cos(6*pi/16) */
  57. #define W7 565  /* 2048*sqrt(2)*cos(7*pi/16) */
  58. /* global declarations */
  59. //void init_idct_int32 (void);
  60. //void idct_int32 (short *block);
  61. /* private data */
  62. static short iclip[1024]; /* clipping table */
  63. static short *iclp;
  64. /* private prototypes */
  65. //static void idctrow _ANSI_ARGS_((short *blk));
  66. //static void idctcol _ANSI_ARGS_((short *blk));
  67. /* row (horizontal) IDCT
  68.  *
  69.  *           7                       pi         1
  70.  * dst[k] = sum c[l] * src[l] * cos( -- * ( k + - ) * l )
  71.  *          l=0                      8          2
  72.  *
  73.  * where: c[0]    = 128
  74.  *        c[1..7] = 128*sqrt(2)
  75.  */
  76. /*
  77. static void idctrow(blk)
  78. short *blk;
  79. {
  80.   int X0, X1, X2, X3, X4, X5, X6, X7, X8;
  81.   // shortcut 
  82.   if (!((X1 = blk[4]<<11) | (X2 = blk[6]) | (X3 = blk[2]) |
  83.         (X4 = blk[1]) | (X5 = blk[7]) | (X6 = blk[5]) | (X7 = blk[3])))
  84.   {
  85.     blk[0]=blk[1]=blk[2]=blk[3]=blk[4]=blk[5]=blk[6]=blk[7]=blk[0]<<3;
  86.     return;
  87.   }
  88.   X0 = (blk[0]<<11) + 128; // for proper rounding in the fourth stage 
  89.   // first stage 
  90.   X8 = W7*(X4+X5);
  91.   X4 = X8 + (W1-W7)*X4;
  92.   X5 = X8 - (W1+W7)*X5;
  93.   X8 = W3*(X6+X7);
  94.   X6 = X8 - (W3-W5)*X6;
  95.   X7 = X8 - (W3+W5)*X7;
  96.   
  97.   // second stage 
  98.   X8 = X0 + X1;
  99.   X0 -= X1;
  100.   X1 = W6*(X3+X2);
  101.   X2 = X1 - (W2+W6)*X2;
  102.   X3 = X1 + (W2-W6)*X3;
  103.   X1 = X4 + X6;
  104.   X4 -= X6;
  105.   X6 = X5 + X7;
  106.   X5 -= X7;
  107.   
  108.   // third stage 
  109.   X7 = X8 + X3;
  110.   X8 -= X3;
  111.   X3 = X0 + X2;
  112.   X0 -= X2;
  113.   X2 = (181*(X4+X5)+128)>>8;
  114.   X4 = (181*(X4-X5)+128)>>8;
  115.   
  116.   // fourth stage 
  117.   blk[0] = (X7+X1)>>8;
  118.   blk[1] = (X3+X2)>>8;
  119.   blk[2] = (X0+X4)>>8;
  120.   blk[3] = (X8+X6)>>8;
  121.   blk[4] = (X8-X6)>>8;
  122.   blk[5] = (X0-X4)>>8;
  123.   blk[6] = (X3-X2)>>8;
  124.   blk[7] = (X7-X1)>>8;
  125. }*/
  126. /* column (vertical) IDCT
  127.  *
  128.  *             7                         pi         1
  129.  * dst[8*k] = sum c[l] * src[8*l] * cos( -- * ( k + - ) * l )
  130.  *            l=0                        8          2
  131.  *
  132.  * where: c[0]    = 1/1024
  133.  *        c[1..7] = (1/1024)*sqrt(2)
  134.  */
  135. /*
  136. static void idctcol(blk)
  137. short *blk;
  138. {
  139.   int X0, X1, X2, X3, X4, X5, X6, X7, X8;
  140.   // shortcut 
  141.   if (!((X1 = (blk[8*4]<<8)) | (X2 = blk[8*6]) | (X3 = blk[8*2]) |
  142.         (X4 = blk[8*1]) | (X5 = blk[8*7]) | (X6 = blk[8*5]) | (X7 = blk[8*3])))
  143.   {
  144.     blk[8*0]=blk[8*1]=blk[8*2]=blk[8*3]=blk[8*4]=blk[8*5]=blk[8*6]=blk[8*7]=
  145.       iclp[(blk[8*0]+32)>>6];
  146.     return;
  147.   }
  148.   X0 = (blk[8*0]<<8) + 8192;
  149.   // first stage 
  150.   X8 = W7*(X4+X5) + 4;
  151.   X4 = (X8+(W1-W7)*X4)>>3;
  152.   X5 = (X8-(W1+W7)*X5)>>3;
  153.   X8 = W3*(X6+X7) + 4;
  154.   X6 = (X8-(W3-W5)*X6)>>3;
  155.   X7 = (X8-(W3+W5)*X7)>>3;
  156.   
  157.   // second stage
  158.   X8 = X0 + X1;
  159.   X0 -= X1;
  160.   X1 = W6*(X3+X2) + 4;
  161.   X2 = (X1-(W2+W6)*X2)>>3;
  162.   X3 = (X1+(W2-W6)*X3)>>3;
  163.   X1 = X4 + X6;
  164.   X4 -= X6;
  165.   X6 = X5 + X7;
  166.   X5 -= X7;
  167.   
  168.   // third stage 
  169.   X7 = X8 + X3;
  170.   X8 -= X3;
  171.   X3 = X0 + X2;
  172.   X0 -= X2;
  173.   X2 = (181*(X4+X5)+128)>>8;
  174.   X4 = (181*(X4-X5)+128)>>8;
  175.   
  176.   // fourth stage
  177.   blk[8*0] = iclp[(X7+X1)>>14];
  178.   blk[8*1] = iclp[(X3+X2)>>14];
  179.   blk[8*2] = iclp[(X0+X4)>>14];
  180.   blk[8*3] = iclp[(X8+X6)>>14];
  181.   blk[8*4] = iclp[(X8-X6)>>14];
  182.   blk[8*5] = iclp[(X0-X4)>>14];
  183.   blk[8*6] = iclp[(X3-X2)>>14];
  184.   blk[8*7] = iclp[(X7-X1)>>14];
  185. }*/
  186. // function pointer
  187. idctFuncPtr idct;
  188. /* two dimensional inverse discrete cosine transform */
  189. //void j_rev_dct(block)
  190. //short *block;
  191. void idct_int32(short * const block)
  192. {
  193.   // idct_int32_init() must be called before the first call to this function!
  194.   /*int i;
  195.   long i;
  196.   for (i=0; i<8; i++)
  197.     idctrow(block+8*i);
  198.   for (i=0; i<8; i++)
  199.     idctcol(block+i);*/
  200.   static short *blk;
  201.   static long i;
  202.   static long X0, X1, X2, X3, X4, X5, X6, X7, X8;
  203.   for (i=0; i<8; i++) // idct rows
  204.   {
  205. blk = block+(i<<3);
  206. if (!((X1 = blk[4]<<11) | (X2 = blk[6]) | (X3 = blk[2]) |
  207.         (X4 = blk[1]) | (X5 = blk[7]) | (X6 = blk[5]) | (X7 = blk[3])))
  208. {
  209. blk[0]=blk[1]=blk[2]=blk[3]=blk[4]=blk[5]=blk[6]=blk[7]=blk[0]<<3;
  210. continue;
  211. }
  212. X0 = (blk[0]<<11) + 128; // for proper rounding in the fourth stage 
  213. // first stage 
  214. X8 = W7*(X4+X5);
  215. X4 = X8 + (W1-W7)*X4;
  216. X5 = X8 - (W1+W7)*X5;
  217. X8 = W3*(X6+X7);
  218. X6 = X8 - (W3-W5)*X6;
  219. X7 = X8 - (W3+W5)*X7;
  220.   
  221. // second stage 
  222. X8 = X0 + X1;
  223. X0 -= X1;
  224. X1 = W6*(X3+X2);
  225. X2 = X1 - (W2+W6)*X2;
  226. X3 = X1 + (W2-W6)*X3;
  227. X1 = X4 + X6;
  228. X4 -= X6;
  229. X6 = X5 + X7;
  230. X5 -= X7;
  231.   
  232. // third stage 
  233. X7 = X8 + X3;
  234. X8 -= X3;
  235. X3 = X0 + X2;
  236. X0 -= X2;
  237. X2 = (181*(X4+X5)+128)>>8;
  238. X4 = (181*(X4-X5)+128)>>8;
  239.   
  240. // fourth stage 
  241. blk[0] = (short)((X7+X1)>>8);
  242. blk[1] = (short)((X3+X2)>>8);
  243. blk[2] = (short)((X0+X4)>>8);
  244. blk[3] = (short)((X8+X6)>>8);
  245. blk[4] = (short)((X8-X6)>>8);
  246. blk[5] = (short)((X0-X4)>>8);
  247. blk[6] = (short)((X3-X2)>>8);
  248. blk[7] = (short)((X7-X1)>>8);
  249.   } // end for ( i = 0; i < 8; ++i ) IDCT-rows
  250.   for (i=0; i<8; i++) // idct columns
  251.   {
  252. blk = block + i;
  253.     // shortcut 
  254. if (!((X1 = (blk[8*4]<<8)) | (X2 = blk[8*6]) | (X3 = blk[8*2]) |
  255.         (X4 = blk[8*1]) | (X5 = blk[8*7]) | (X6 = blk[8*5]) | (X7 = blk[8*3])))
  256. {
  257. blk[8*0]=blk[8*1]=blk[8*2]=blk[8*3]=blk[8*4]=
  258. blk[8*5]=blk[8*6]=blk[8*7]=iclp[(blk[8*0]+32)>>6];
  259. continue;
  260. }
  261. X0 = (blk[8*0]<<8) + 8192;
  262. // first stage 
  263. X8 = W7*(X4+X5) + 4;
  264. X4 = (X8+(W1-W7)*X4)>>3;
  265. X5 = (X8-(W1+W7)*X5)>>3;
  266. X8 = W3*(X6+X7) + 4;
  267. X6 = (X8-(W3-W5)*X6)>>3;
  268. X7 = (X8-(W3+W5)*X7)>>3;
  269.   
  270. // second stage 
  271. X8 = X0 + X1;
  272. X0 -= X1;
  273. X1 = W6*(X3+X2) + 4;
  274. X2 = (X1-(W2+W6)*X2)>>3;
  275. X3 = (X1+(W2-W6)*X3)>>3;
  276. X1 = X4 + X6;
  277. X4 -= X6;
  278. X6 = X5 + X7;
  279. X5 -= X7;
  280.   
  281. // third stage 
  282. X7 = X8 + X3;
  283. X8 -= X3;
  284. X3 = X0 + X2;
  285. X0 -= X2;
  286. X2 = (181*(X4+X5)+128)>>8;
  287. X4 = (181*(X4-X5)+128)>>8;
  288.   
  289. // fourth stage 
  290. blk[8*0] = iclp[(X7+X1)>>14];
  291. blk[8*1] = iclp[(X3+X2)>>14];
  292. blk[8*2] = iclp[(X0+X4)>>14];
  293. blk[8*3] = iclp[(X8+X6)>>14];
  294. blk[8*4] = iclp[(X8-X6)>>14];
  295. blk[8*5] = iclp[(X0-X4)>>14];
  296. blk[8*6] = iclp[(X3-X2)>>14];
  297. blk[8*7] = iclp[(X7-X1)>>14]; 
  298.   }
  299.  
  300. } // end function idct_int32(block)
  301. //void
  302. //idct_int32_init()
  303. void idct_int32_init()
  304. {
  305.   int i;
  306.   iclp = iclip+512;
  307.   for (i= -512; i<512; i++)
  308.     iclp[i] = (i<-256) ? -256 : ((i>255) ? 255 : i);
  309. }