Tabinit.cpp
上传用户:lusi_8715
上传日期:2007-01-08
资源大小:199k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /**************************************************************************************
  2.  *                                                                                    *
  3.  * This application contains code from OpenDivX and is released as a "Larger Work"    *
  4.  * under that license. Consistant with that license, this application is released     *
  5.  * under the GNU General Public License.                                              *
  6.  *                                                                                    *
  7.  * The OpenDivX license can be found at: http://www.projectmayo.com/opendivx/docs.php *
  8.  * The GPL can be found at: http://www.gnu.org/copyleft/gpl.html                      *
  9.  *                                                                                    *
  10.  * Authors: Damien Chavarria <roy204 at projectmayo.com>                              *
  11.  *                                                                                    *
  12.  **************************************************************************************/
  13. #include <stdlib.h>
  14. #include "mpg123.h"
  15. real decwin[512+32];
  16. static real cos64[16],cos32[8],cos16[4],cos8[2],cos4[1];
  17. real *pnts[] = { cos64,cos32,cos16,cos8,cos4 };
  18. static long intwinbase[] = {
  19.      0,    -1,    -1,    -1,    -1,    -1,    -1,    -2,    -2,    -2,
  20.     -2,    -3,    -3,    -4,    -4,    -5,    -5,    -6,    -7,    -7,
  21.     -8,    -9,   -10,   -11,   -13,   -14,   -16,   -17,   -19,   -21,
  22.    -24,   -26,   -29,   -31,   -35,   -38,   -41,   -45,   -49,   -53,
  23.    -58,   -63,   -68,   -73,   -79,   -85,   -91,   -97,  -104,  -111,
  24.   -117,  -125,  -132,  -139,  -147,  -154,  -161,  -169,  -176,  -183,
  25.   -190,  -196,  -202,  -208,  -213,  -218,  -222,  -225,  -227,  -228,
  26.   -228,  -227,  -224,  -221,  -215,  -208,  -200,  -189,  -177,  -163,
  27.   -146,  -127,  -106,   -83,   -57,   -29,     2,    36,    72,   111,
  28.    153,   197,   244,   294,   347,   401,   459,   519,   581,   645,
  29.    711,   779,   848,   919,   991,  1064,  1137,  1210,  1283,  1356,
  30.   1428,  1498,  1567,  1634,  1698,  1759,  1817,  1870,  1919,  1962,
  31.   2001,  2032,  2057,  2075,  2085,  2087,  2080,  2063,  2037,  2000,
  32.   1952,  1893,  1822,  1739,  1644,  1535,  1414,  1280,  1131,   970,
  33.    794,   605,   402,   185,   -45,  -288,  -545,  -814, -1095, -1388,
  34.  -1692, -2006, -2330, -2663, -3004, -3351, -3705, -4063, -4425, -4788,
  35.  -5153, -5517, -5879, -6237, -6589, -6935, -7271, -7597, -7910, -8209,
  36.  -8491, -8755, -8998, -9219, -9416, -9585, -9727, -9838, -9916, -9959,
  37.  -9966, -9935, -9863, -9750, -9592, -9389, -9139, -8840, -8492, -8092,
  38.  -7640, -7134, -6574, -5959, -5288, -4561, -3776, -2935, -2037, -1082,
  39.    -70,   998,  2122,  3300,  4533,  5818,  7154,  8540,  9975, 11455,
  40.  12980, 14548, 16155, 17799, 19478, 21189, 22929, 24694, 26482, 28289,
  41.  30112, 31947, 33791, 35640, 37489, 39336, 41176, 43006, 44821, 46617,
  42.  48390, 50137, 51853, 53534, 55178, 56778, 58333, 59838, 61289, 62684,
  43.  64019, 65290, 66494, 67629, 68692, 69679, 70590, 71420, 72169, 72835,
  44.  73415, 73908, 74313, 74630, 74856, 74992, 75038 };
  45. void make_decode_tables(long scaleval)
  46. {
  47.   int i,j,k,kr,divv;
  48.   real *table,*costab;
  49.   
  50.   for(i=0;i<5;i++)
  51.   {
  52.     kr=0x10>>i; divv=0x40>>i;
  53.     costab = pnts[i];
  54.     for(k=0;k<kr;k++)
  55.       costab[k] = 1.0 / (2.0 * cos(M_PI * ((double) k * 2.0 + 1.0) / (double) divv));
  56.   }
  57.   table = decwin;
  58.   scaleval = -scaleval;
  59.   for(i=0,j=0;i<256;i++,j++,table+=32)
  60.   {
  61.     if(table < decwin+512+16)
  62.       table[16] = table[0] = (double) intwinbase[j] / 65536.0 * (double) scaleval;
  63.     if(i % 32 == 31)
  64.       table -= 1023;
  65.     if(i % 64 == 63)
  66.       scaleval = - scaleval;
  67.   }
  68.   for( /* i=256 */ ;i<512;i++,j--,table+=32)
  69.   {
  70.     if(table < decwin+512+16)
  71.       table[16] = table[0] = (double) intwinbase[j] / 65536.0 * (double) scaleval;
  72.     if(i % 32 == 31)
  73.       table -= 1023;
  74.     if(i % 64 == 63)
  75.       scaleval = - scaleval;
  76.   }
  77. }