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

流媒体/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. /* 
  14.  * Mpeg Layer-3 audio decoder 
  15.  * --------------------------
  16.  * copyright (c) 1995,1996,1997 by Michael Hipp.
  17.  * All rights reserved. See also 'README'
  18.  */ 
  19. #include <stdlib.h>
  20. #include <windows.h>
  21. #include "mpg123.h"
  22. #include "mpglib.h"
  23. #include "huffman.h"
  24. extern struct mpstr *gmp;
  25. static real ispow[8207];
  26. static real aa_ca[8],aa_cs[8];
  27. static real COS1[12][6];
  28. static real win[4][36];
  29. static real win1[4][36];
  30. static real gainpow2[256+118+4];
  31. static real COS9[9];
  32. static real COS6_1,COS6_2;
  33. static real tfcos36[9];
  34. static real tfcos12[3];
  35. struct bandInfoStruct {
  36.   short longIdx[23];
  37.   short longDiff[22];
  38.   short shortIdx[14];
  39.   short shortDiff[13];
  40. };
  41. int longLimit[9][23];
  42. int shortLimit[9][14];
  43. struct bandInfoStruct bandInfo[9] = { 
  44. /* MPEG 1.0 */
  45.  { {0,4,8,12,16,20,24,30,36,44,52,62,74, 90,110,134,162,196,238,288,342,418,576},
  46.    {4,4,4,4,4,4,6,6,8, 8,10,12,16,20,24,28,34,42,50,54, 76,158},
  47.    {0,4*3,8*3,12*3,16*3,22*3,30*3,40*3,52*3,66*3, 84*3,106*3,136*3,192*3},
  48.    {4,4,4,4,6,8,10,12,14,18,22,30,56} } ,
  49.  { {0,4,8,12,16,20,24,30,36,42,50,60,72, 88,106,128,156,190,230,276,330,384,576},
  50.    {4,4,4,4,4,4,6,6,6, 8,10,12,16,18,22,28,34,40,46,54, 54,192},
  51.    {0,4*3,8*3,12*3,16*3,22*3,28*3,38*3,50*3,64*3, 80*3,100*3,126*3,192*3},
  52.    {4,4,4,4,6,6,10,12,14,16,20,26,66} } ,
  53.  { {0,4,8,12,16,20,24,30,36,44,54,66,82,102,126,156,194,240,296,364,448,550,576} ,
  54.    {4,4,4,4,4,4,6,6,8,10,12,16,20,24,30,38,46,56,68,84,102, 26} ,
  55.    {0,4*3,8*3,12*3,16*3,22*3,30*3,42*3,58*3,78*3,104*3,138*3,180*3,192*3} ,
  56.    {4,4,4,4,6,8,12,16,20,26,34,42,12} }  ,
  57. /* MPEG 2.0 */
  58.  { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576},
  59.    {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54 } ,
  60.    {0,4*3,8*3,12*3,18*3,24*3,32*3,42*3,56*3,74*3,100*3,132*3,174*3,192*3} ,
  61.    {4,4,4,6,6,8,10,14,18,26,32,42,18 } } ,
  62.  { {0,6,12,18,24,30,36,44,54,66,80,96,114,136,162,194,232,278,330,394,464,540,576},
  63.    {6,6,6,6,6,6,8,10,12,14,16,18,22,26,32,38,46,52,64,70,76,36 } ,
  64.    {0,4*3,8*3,12*3,18*3,26*3,36*3,48*3,62*3,80*3,104*3,136*3,180*3,192*3} ,
  65.    {4,4,4,6,8,10,12,14,18,24,32,44,12 } } ,
  66.  { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576},
  67.    {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54 },
  68.    {0,4*3,8*3,12*3,18*3,26*3,36*3,48*3,62*3,80*3,104*3,134*3,174*3,192*3},
  69.    {4,4,4,6,8,10,12,14,18,24,30,40,18 } } ,
  70. /* MPEG 2.5 */
  71.  { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576} ,
  72.    {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54},
  73.    {0,12,24,36,54,78,108,144,186,240,312,402,522,576},
  74.    {4,4,4,6,8,10,12,14,18,24,30,40,18} },
  75.  { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576} ,
  76.    {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54},
  77.    {0,12,24,36,54,78,108,144,186,240,312,402,522,576},
  78.    {4,4,4,6,8,10,12,14,18,24,30,40,18} },
  79.  { {0,12,24,36,48,60,72,88,108,132,160,192,232,280,336,400,476,566,568,570,572,574,576},
  80.    {12,12,12,12,12,12,16,20,24,28,32,40,48,56,64,76,90,2,2,2,2,2},
  81.    {0, 24, 48, 72,108,156,216,288,372,480,486,492,498,576},
  82.    {8,8,8,12,16,20,24,28,36,2,2,2,26} } ,
  83. };
  84. static int mapbuf0[9][152];
  85. static int mapbuf1[9][156];
  86. static int mapbuf2[9][44];
  87. static int *map[9][3];
  88. static int *mapend[9][3];
  89. static unsigned int n_slen2[512]; /* MPEG 2.0 slen for 'normal' mode */
  90. static unsigned int i_slen2[256]; /* MPEG 2.0 slen for intensity stereo */
  91. static real tan1_1[16],tan2_1[16],tan1_2[16],tan2_2[16];
  92. static real pow1_1[2][16],pow2_1[2][16],pow1_2[2][16],pow2_2[2][16];
  93. /* 
  94.  * init tables for layer-3 
  95.  */
  96. void init_layer3(int down_sample_sblimit)
  97. {
  98.   int i,j,k,l;
  99.   for(i=-256;i<118+4;i++)
  100.     gainpow2[i+256] = pow((double)2.0,-0.25 * (double) (i+210) );
  101.   for(i=0;i<8207;i++)
  102.     ispow[i] = pow((double)i,(double)4.0/3.0);
  103.   for (i=0;i<8;i++)
  104.   {
  105.     static double Ci[8]={-0.6,-0.535,-0.33,-0.185,-0.095,-0.041,-0.0142,-0.0037};
  106.     double sq=sqrt(1.0+Ci[i]*Ci[i]);
  107.     aa_cs[i] = 1.0/sq;
  108.     aa_ca[i] = Ci[i]/sq;
  109.   }
  110.   for(i=0;i<18;i++)
  111.   {
  112.     win[0][i]    = win[1][i]    = 0.5 * sin( M_PI / 72.0 * (double) (2*(i+0) +1) ) / cos ( M_PI * (double) (2*(i+0) +19) / 72.0 );
  113.     win[0][i+18] = win[3][i+18] = 0.5 * sin( M_PI / 72.0 * (double) (2*(i+18)+1) ) / cos ( M_PI * (double) (2*(i+18)+19) / 72.0 );
  114.   }
  115.   for(i=0;i<6;i++)
  116.   {
  117.     win[1][i+18] = 0.5 / cos ( M_PI * (double) (2*(i+18)+19) / 72.0 );
  118.     win[3][i+12] = 0.5 / cos ( M_PI * (double) (2*(i+12)+19) / 72.0 );
  119.     win[1][i+24] = 0.5 * sin( M_PI / 24.0 * (double) (2*i+13) ) / cos ( M_PI * (double) (2*(i+24)+19) / 72.0 );
  120.     win[1][i+30] = win[3][i] = 0.0;
  121.     win[3][i+6 ] = 0.5 * sin( M_PI / 24.0 * (double) (2*i+1) )  / cos ( M_PI * (double) (2*(i+6 )+19) / 72.0 );
  122.   }
  123.   for(i=0;i<9;i++)
  124.     COS9[i] = cos( M_PI / 18.0 * (double) i);
  125.   for(i=0;i<9;i++)
  126.     tfcos36[i] = 0.5 / cos ( M_PI * (double) (i*2+1) / 36.0 );
  127.   for(i=0;i<3;i++)
  128.     tfcos12[i] = 0.5 / cos ( M_PI * (double) (i*2+1) / 12.0 );
  129.   COS6_1 = cos( M_PI / 6.0 * (double) 1);
  130.   COS6_2 = cos( M_PI / 6.0 * (double) 2);
  131.   for(i=0;i<12;i++)
  132.   {
  133.     win[2][i]  = 0.5 * sin( M_PI / 24.0 * (double) (2*i+1) ) / cos ( M_PI * (double) (2*i+7) / 24.0 );
  134.     for(j=0;j<6;j++)
  135.       COS1[i][j] = cos( M_PI / 24.0 * (double) ((2*i+7)*(2*j+1)) );
  136.   }
  137.   for(j=0;j<4;j++) {
  138.     static int len[4] = { 36,36,12,36 };
  139.     for(i=0;i<len[j];i+=2)
  140.       win1[j][i] = + win[j][i];
  141.     for(i=1;i<len[j];i+=2)
  142.       win1[j][i] = - win[j][i];
  143.   }
  144.   for(i=0;i<16;i++)
  145.   {
  146.     double t = tan( (double) i * M_PI / 12.0 );
  147.     tan1_1[i] = t / (1.0+t);
  148.     tan2_1[i] = 1.0 / (1.0 + t);
  149.     tan1_2[i] = M_SQRT2 * t / (1.0+t);
  150.     tan2_2[i] = M_SQRT2 / (1.0 + t);
  151.     for(j=0;j<2;j++) {
  152.       double base = pow(2.0,-0.25*(j+1.0));
  153.       double p1=1.0,p2=1.0;
  154.       if(i > 0) {
  155.         if( i & 1 )
  156.           p1 = pow(base,(i+1.0)*0.5);
  157.         else
  158.           p2 = pow(base,i*0.5);
  159.       }
  160.       pow1_1[j][i] = p1;
  161.       pow2_1[j][i] = p2;
  162.       pow1_2[j][i] = M_SQRT2 * p1;
  163.       pow2_2[j][i] = M_SQRT2 * p2;
  164.     }
  165.   }
  166.   for(j=0;j<9;j++)
  167.   {
  168.    struct bandInfoStruct *bi = &bandInfo[j];
  169.    int *mp;
  170.    int cb,lwin;
  171.    short *bdf;
  172.    mp = map[j][0] = mapbuf0[j];
  173.    bdf = bi->longDiff;
  174.    for(i=0,cb = 0; cb < 8 ; cb++,i+=*bdf++) {
  175.      *mp++ = (*bdf) >> 1;
  176.      *mp++ = i;
  177.      *mp++ = 3;
  178.      *mp++ = cb;
  179.    }
  180.    bdf = bi->shortDiff+3;
  181.    for(cb=3;cb<13;cb++) {
  182.      int l = (*bdf++) >> 1;
  183.      for(lwin=0;lwin<3;lwin++) {
  184.        *mp++ = l;
  185.        *mp++ = i + lwin;
  186.        *mp++ = lwin;
  187.        *mp++ = cb;
  188.      }
  189.      i += 6*l;
  190.    }
  191.    mapend[j][0] = mp;
  192.    mp = map[j][1] = mapbuf1[j];
  193.    bdf = bi->shortDiff+0;
  194.    for(i=0,cb=0;cb<13;cb++) {
  195.      int l = (*bdf++) >> 1;
  196.      for(lwin=0;lwin<3;lwin++) {
  197.        *mp++ = l;
  198.        *mp++ = i + lwin;
  199.        *mp++ = lwin;
  200.        *mp++ = cb;
  201.      }
  202.      i += 6*l;
  203.    }
  204.    mapend[j][1] = mp;
  205.    mp = map[j][2] = mapbuf2[j];
  206.    bdf = bi->longDiff;
  207.    for(cb = 0; cb < 22 ; cb++) {
  208.      *mp++ = (*bdf++) >> 1;
  209.      *mp++ = cb;
  210.    }
  211.    mapend[j][2] = mp;
  212.   }
  213.   for(j=0;j<9;j++) {
  214.     for(i=0;i<23;i++) {
  215.       longLimit[j][i] = (bandInfo[j].longIdx[i] - 1 + 8) / 18 + 1;
  216.       if(longLimit[j][i] > (down_sample_sblimit) )
  217.         longLimit[j][i] = down_sample_sblimit;
  218.     }
  219.     for(i=0;i<14;i++) {
  220.       shortLimit[j][i] = (bandInfo[j].shortIdx[i] - 1) / 18 + 1;
  221.       if(shortLimit[j][i] > (down_sample_sblimit) )
  222.         shortLimit[j][i] = down_sample_sblimit;
  223.     }
  224.   }
  225.   for(i=0;i<5;i++) {
  226.     for(j=0;j<6;j++) {
  227.       for(k=0;k<6;k++) {
  228.         int n = k + j * 6 + i * 36;
  229.         i_slen2[n] = i|(j<<3)|(k<<6)|(3<<12);
  230.       }
  231.     }
  232.   }
  233.   for(i=0;i<4;i++) {
  234.     for(j=0;j<4;j++) {
  235.       for(k=0;k<4;k++) {
  236.         int n = k + j * 4 + i * 16;
  237.         i_slen2[n+180] = i|(j<<3)|(k<<6)|(4<<12);
  238.       }
  239.     }
  240.   }
  241.   for(i=0;i<4;i++) {
  242.     for(j=0;j<3;j++) {
  243.       int n = j + i * 3;
  244.       i_slen2[n+244] = i|(j<<3) | (5<<12);
  245.       n_slen2[n+500] = i|(j<<3) | (2<<12) | (1<<15);
  246.     }
  247.   }
  248.   for(i=0;i<5;i++) {
  249.     for(j=0;j<5;j++) {
  250.       for(k=0;k<4;k++) {
  251.         for(l=0;l<4;l++) {
  252.           int n = l + k * 4 + j * 16 + i * 80;
  253.           n_slen2[n] = i|(j<<3)|(k<<6)|(l<<9)|(0<<12);
  254.         }
  255.       }
  256.     }
  257.   }
  258.   for(i=0;i<5;i++) {
  259.     for(j=0;j<5;j++) {
  260.       for(k=0;k<4;k++) {
  261.         int n = k + j * 4 + i * 20;
  262.         n_slen2[n+400] = i|(j<<3)|(k<<6)|(1<<12);
  263.       }
  264.     }
  265.   }
  266. }
  267. /**
  268.  * read additional side information
  269.  **/
  270. static void III_get_side_info_1(struct III_sideinfo *si,int stereo,
  271.  int ms_stereo,long sfreq,int single)
  272. {
  273.    int ch, gr;
  274.    int powdiff = (single == 3) ? 4 : 0;
  275.    si->main_data_begin = getbits(9);
  276.    if (stereo == 1)
  277.      si->private_bits = getbits_fast(5);
  278.    else 
  279.      si->private_bits = getbits_fast(3);
  280.    for (ch=0; ch<stereo; ch++) {
  281.        si->ch[ch].gr[0].scfsi = -1;
  282.        si->ch[ch].gr[1].scfsi = getbits_fast(4);
  283.    }
  284.    for (gr=0; gr<2; gr++) 
  285.    {
  286.      for (ch=0; ch<stereo; ch++) 
  287.      {
  288.        register struct gr_info_s *gr_info = &(si->ch[ch].gr[gr]);
  289.        gr_info->part2_3_length = getbits(12);
  290.        gr_info->big_values = getbits_fast(9);
  291.        if(gr_info->big_values > 288) {
  292.           gr_info->big_values = 288;
  293.        }
  294.        gr_info->pow2gain = gainpow2+256 - getbits_fast(8) + powdiff;
  295.        if(ms_stereo)
  296.          gr_info->pow2gain += 2;
  297.        gr_info->scalefac_compress = getbits_fast(4);
  298. /* window-switching flag == 1 for block_Type != 0 .. and block-type == 0 -> win-sw-flag = 0 */
  299.        if(get1bit()) 
  300.        {
  301.          int i;
  302.          gr_info->block_type = getbits_fast(2);
  303.          gr_info->mixed_block_flag = get1bit();
  304.          gr_info->table_select[0] = getbits_fast(5);
  305.          gr_info->table_select[1] = getbits_fast(5);
  306.          /*
  307.           * table_select[2] not needed, because there is no region2,
  308.           * but to satisfy some verifications tools we set it either.
  309.           */
  310.          gr_info->table_select[2] = 0;
  311.          for(i=0;i<3;i++)
  312.            gr_info->full_gain[i] = gr_info->pow2gain + (getbits_fast(3)<<3);
  313.          if(gr_info->block_type == 0) {
  314.    return;
  315.          }
  316.          /* region_count/start parameters are implicit in this case. */       
  317.          gr_info->region1start = 36>>1;
  318.          gr_info->region2start = 576>>1;
  319.        }
  320.        else 
  321.        {
  322.          int i,r0c,r1c;
  323.          for (i=0; i<3; i++)
  324.            gr_info->table_select[i] = getbits_fast(5);
  325.          r0c = getbits_fast(4);
  326.          r1c = getbits_fast(3);
  327.          gr_info->region1start = bandInfo[sfreq].longIdx[r0c+1] >> 1 ;
  328.          gr_info->region2start = bandInfo[sfreq].longIdx[r0c+1+r1c+1] >> 1;
  329.          gr_info->block_type = 0;
  330.          gr_info->mixed_block_flag = 0;
  331.        }
  332.        gr_info->preflag = get1bit();
  333.        gr_info->scalefac_scale = get1bit();
  334.        gr_info->count1table_select = get1bit();
  335.      }
  336.    }
  337. }
  338. /**
  339.  * Side Info for MPEG 2.0 / LSF
  340.  **/
  341. static void III_get_side_info_2(struct III_sideinfo *si,int stereo,
  342.  int ms_stereo,long sfreq,int single)
  343. {
  344.    int ch;
  345.    int powdiff = (single == 3) ? 4 : 0;
  346.    si->main_data_begin = getbits(8);
  347.    if (stereo == 1)
  348.      si->private_bits = get1bit();
  349.    else 
  350.      si->private_bits = getbits_fast(2);
  351.    for (ch=0; ch<stereo; ch++) 
  352.    {
  353.        register struct gr_info_s *gr_info = &(si->ch[ch].gr[0]);
  354.        gr_info->part2_3_length = getbits(12);
  355.        gr_info->big_values = getbits_fast(9);
  356.        if(gr_info->big_values > 288) {
  357.  gr_info->big_values = 288;
  358.        }
  359.        gr_info->pow2gain = gainpow2+256 - getbits_fast(8) + powdiff;
  360.        if(ms_stereo)
  361.          gr_info->pow2gain += 2;
  362.        gr_info->scalefac_compress = getbits(9);
  363. /* window-switching flag == 1 for block_Type != 0 .. and block-type == 0 -> win-sw-flag = 0 */
  364.        if(get1bit()) 
  365.        {
  366.          int i;
  367.          gr_info->block_type = getbits_fast(2);
  368.          gr_info->mixed_block_flag = get1bit();
  369.          gr_info->table_select[0] = getbits_fast(5);
  370.          gr_info->table_select[1] = getbits_fast(5);
  371.          /*
  372.           * table_select[2] not needed, because there is no region2,
  373.           * but to satisfy some verifications tools we set it either.
  374.           */
  375.          gr_info->table_select[2] = 0;
  376.          for(i=0;i<3;i++)
  377.            gr_info->full_gain[i] = gr_info->pow2gain + (getbits_fast(3)<<3);
  378.          if(gr_info->block_type == 0) {
  379.            return;
  380.          }
  381.          /* region_count/start parameters are implicit in this case. */       
  382. /* check this again! */
  383.          if(gr_info->block_type == 2)
  384.            gr_info->region1start = 36>>1;
  385.          else if(sfreq == 8)
  386. /* check this for 2.5 and sfreq=8 */
  387.            gr_info->region1start = 108>>1;
  388.          else
  389.            gr_info->region1start = 54>>1;
  390.          gr_info->region2start = 576>>1;
  391.        }
  392.        else 
  393.        {
  394.          int i,r0c,r1c;
  395.          for (i=0; i<3; i++)
  396.            gr_info->table_select[i] = getbits_fast(5);
  397.          r0c = getbits_fast(4);
  398.          r1c = getbits_fast(3);
  399.          gr_info->region1start = bandInfo[sfreq].longIdx[r0c+1] >> 1 ;
  400.          gr_info->region2start = bandInfo[sfreq].longIdx[r0c+1+r1c+1] >> 1;
  401.          gr_info->block_type = 0;
  402.          gr_info->mixed_block_flag = 0;
  403.        }
  404.        gr_info->scalefac_scale = get1bit();
  405.        gr_info->count1table_select = get1bit();
  406.    }
  407. }
  408. /**
  409.  * read scalefactors
  410.  **/
  411. static int III_get_scale_factors_1(int *scf,struct gr_info_s *gr_info)
  412. {
  413.    static const unsigned char slen[2][16] = {
  414.      {0, 0, 0, 0, 3, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4},
  415.      {0, 1, 2, 3, 0, 1, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3}
  416.    };
  417.    int numbits;
  418.    int num0 = slen[0][gr_info->scalefac_compress];
  419.    int num1 = slen[1][gr_info->scalefac_compress];
  420.     if (gr_info->block_type == 2) {
  421.       int i=18;
  422.       numbits = (num0 + num1) * 18;
  423.       if (gr_info->mixed_block_flag) {
  424.          for (i=8;i;i--)
  425.            *scf++ = getbits_fast(num0);
  426.          i = 9;
  427.          numbits -= num0; /* num0 * 17 + num1 * 18 */
  428.       }
  429.       for (;i;i--)
  430.         *scf++ = getbits_fast(num0);
  431.       for (i = 18; i; i--)
  432.         *scf++ = getbits_fast(num1);
  433.       *scf++ = 0; *scf++ = 0; *scf++ = 0; /* short[13][0..2] = 0 */
  434.     }
  435.     else {
  436.       int i;
  437.       int scfsi = gr_info->scfsi;
  438.       if(scfsi < 0) { /* scfsi < 0 => granule == 0 */
  439.          for(i=11;i;i--)
  440.            *scf++ = getbits_fast(num0);
  441.          for(i=10;i;i--)
  442.            *scf++ = getbits_fast(num1);
  443.          numbits = (num0 + num1) * 10 + num0;
  444.          *scf++ = 0;
  445.       }
  446.       else {
  447.         numbits = 0;
  448.         if(!(scfsi & 0x8)) {
  449.           for (i=0;i<6;i++)
  450.             *scf++ = getbits_fast(num0);
  451.           numbits += num0 * 6;
  452.         }
  453.         else {
  454.           scf += 6; 
  455.         }
  456.         if(!(scfsi & 0x4)) {
  457.           for (i=0;i<5;i++)
  458.             *scf++ = getbits_fast(num0);
  459.           numbits += num0 * 5;
  460.         }
  461.         else {
  462.           scf += 5;
  463.         }
  464.         if(!(scfsi & 0x2)) {
  465.           for(i=0;i<5;i++)
  466.             *scf++ = getbits_fast(num1);
  467.           numbits += num1 * 5;
  468.         }
  469.         else {
  470.           scf += 5; 
  471.         }
  472.         if(!(scfsi & 0x1)) {
  473.           for (i=0;i<5;i++)
  474.             *scf++ = getbits_fast(num1);
  475.           numbits += num1 * 5;
  476.         }
  477.         else {
  478.            scf += 5;
  479.         }
  480.         *scf++ = 0;  /* no l[21] in original sources */
  481.       }
  482.     }
  483.     return numbits;
  484. }
  485. /**
  486.  *
  487.  **/
  488. static int III_get_scale_factors_2(int *scf,struct gr_info_s *gr_info,int i_stereo)
  489. {
  490.   unsigned char *pnt;
  491.   int i,j;
  492.   unsigned int slen;
  493.   int n = 0;
  494.   int numbits = 0;
  495.   static unsigned char stab[3][6][4] = {
  496.    { { 6, 5, 5,5 } , { 6, 5, 7,3 } , { 11,10,0,0} ,
  497.      { 7, 7, 7,0 } , { 6, 6, 6,3 } , {  8, 8,5,0} } ,
  498.    { { 9, 9, 9,9 } , { 9, 9,12,6 } , { 18,18,0,0} ,
  499.      {12,12,12,0 } , {12, 9, 9,6 } , { 15,12,9,0} } ,
  500.    { { 6, 9, 9,9 } , { 6, 9,12,6 } , { 15,18,0,0} ,
  501.      { 6,15,12,0 } , { 6,12, 9,6 } , {  6,18,9,0} } }; 
  502.   if(i_stereo) /* i_stereo AND second channel -> do_layer3() checks this */
  503.     slen = i_slen2[gr_info->scalefac_compress>>1];
  504.   else
  505.     slen = n_slen2[gr_info->scalefac_compress];
  506.   gr_info->preflag = (slen>>15) & 0x1;
  507.   n = 0;  
  508.   if( gr_info->block_type == 2 ) {
  509.     n++;
  510.     if(gr_info->mixed_block_flag)
  511.       n++;
  512.   }
  513.   pnt = stab[n][(slen>>12)&0x7];
  514.   for(i=0;i<4;i++) {
  515.     int num = slen & 0x7;
  516.     slen >>= 3;
  517.     if(num) {
  518.       for(j=0;j<(int)(pnt[i]);j++)
  519.         *scf++ = getbits_fast(num);
  520.       numbits += pnt[i] * num;
  521.     }
  522.     else {
  523.       for(j=0;j<(int)(pnt[i]);j++)
  524.         *scf++ = 0;
  525.     }
  526.   }
  527.   
  528.   n = (n << 1) + 1;
  529.   for(i=0;i<n;i++)
  530.     *scf++ = 0;
  531.   return numbits;
  532. }
  533. static int pretab1[22] = {0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,2,3,3,3,2,0};
  534. static int pretab2[22] = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
  535. /**
  536.  *
  537.  **/
  538. static int III_dequantize_sample(real xr[SBLIMIT][SSLIMIT],int *scf,
  539.    struct gr_info_s *gr_info,int sfreq,int part2bits)
  540. {
  541.   int shift = 1 + gr_info->scalefac_scale;
  542.   real *xrpnt = (real *) xr;
  543.   int l[3],l3;
  544.   int part2remain = gr_info->part2_3_length - part2bits;
  545.   int *me;
  546.   //MessageBox(NULL, "DEQUANTIZE", "", MB_OK);
  547.   {
  548.     int bv       = gr_info->big_values;
  549.     int region1  = gr_info->region1start;
  550.     int region2  = gr_info->region2start;
  551.     l3 = ((576>>1)-bv)>>1;   
  552. /*
  553.  * we may lose the 'odd' bit here !! 
  554.  * check this later again 
  555.  */
  556.     if(bv <= region1) {
  557.       l[0] = bv; l[1] = 0; l[2] = 0;
  558.     }
  559.     else {
  560.       l[0] = region1;
  561.       if(bv <= region2) {
  562.         l[1] = bv - l[0];  l[2] = 0;
  563.       }
  564.       else {
  565.         l[1] = region2 - l[0]; l[2] = bv - region2;
  566.       }
  567.     }
  568.   }
  569.  
  570.   if(gr_info->block_type == 2) {
  571.     /*
  572.      * decoding with short or mixed mode BandIndex table 
  573.      */
  574.   
  575. int i,max[4];
  576.     int step=0,lwin=0,cb=0;
  577.     register real v = 0.0;
  578.     register int *m,mc;
  579.   //MessageBox(NULL, "DEQUANTIZE1", "", MB_OK);
  580.     if(gr_info->mixed_block_flag) {
  581.       max[3] = -1;
  582.       max[0] = max[1] = max[2] = 2;
  583.       m = map[sfreq][0];
  584.       me = mapend[sfreq][0];
  585.     }
  586.     else {
  587.       max[0] = max[1] = max[2] = max[3] = -1;
  588.       /* max[3] not really needed in this case */
  589.       m = map[sfreq][1];
  590.       me = mapend[sfreq][1];
  591.     }
  592.   //MessageBox(NULL, "DEQUANTIZE3", "", MB_OK);
  593.     mc = 0;
  594.     for(i=0;i<2;i++) {
  595.       int lp = l[i];
  596.       struct newhuff *h = ht+gr_info->table_select[i];
  597.       for(;lp;lp--,mc--) {
  598.         register int x,y;
  599.         if( (!mc) ) {
  600.           mc = *m++;
  601.           xrpnt = ((real *) xr) + (*m++);
  602.           lwin = *m++;
  603.           cb = *m++;
  604.           if(lwin == 3) {
  605.             v = gr_info->pow2gain[(*scf++) << shift];
  606.             step = 1;
  607.           }
  608.           else {
  609.             v = gr_info->full_gain[lwin][(*scf++) << shift];
  610.             step = 3;
  611.           }
  612.         }
  613.         {
  614.           register short *val = h->table;
  615.           while((y=*val++)<0) {
  616.             if (get1bit())
  617.               val -= y;
  618.             part2remain--;
  619.           }
  620.           x = y >> 4;
  621.           y &= 0xf;
  622.         }
  623.         if(x == 15) {
  624.           max[lwin] = cb;
  625.           part2remain -= h->linbits+1;
  626.           x += getbits(h->linbits);
  627.           if(get1bit())
  628.             *xrpnt = -ispow[x] * v;
  629.           else
  630.             *xrpnt =  ispow[x] * v;
  631.         }
  632.         else if(x) {
  633.           max[lwin] = cb;
  634.           if(get1bit())
  635.             *xrpnt = -ispow[x] * v;
  636.           else
  637.             *xrpnt =  ispow[x] * v;
  638.           part2remain--;
  639.         }
  640.         else
  641.           *xrpnt = 0.0;
  642.         xrpnt += step;
  643.         if(y == 15) {
  644.           max[lwin] = cb;
  645.           part2remain -= h->linbits+1;
  646.           y += getbits(h->linbits);
  647.           if(get1bit())
  648.             *xrpnt = -ispow[y] * v;
  649.           else
  650.             *xrpnt =  ispow[y] * v;
  651.         }
  652.         else if(y) {
  653.           max[lwin] = cb;
  654.           if(get1bit())
  655.             *xrpnt = -ispow[y] * v;
  656.           else
  657.             *xrpnt =  ispow[y] * v;
  658.           part2remain--;
  659.         }
  660.         else
  661.           *xrpnt = 0.0;
  662.         xrpnt += step;
  663.       }
  664.     }
  665.   //MessageBox(NULL, "DEQUANTIZE4", "", MB_OK);
  666.     for(;l3 && (part2remain > 0);l3--) {
  667.       struct newhuff *h = htc+gr_info->count1table_select;
  668.       register short *val = h->table,a;
  669.       while((a=*val++)<0) {
  670.         part2remain--;
  671.         if(part2remain < 0) {
  672.           part2remain++;
  673.           a = 0;
  674.           break;
  675.         }
  676.         if (get1bit())
  677.           val -= a;
  678.       }
  679.       for(i=0;i<4;i++) {
  680.         if(!(i & 1)) {
  681.           if(!mc) {
  682.             mc = *m++;
  683.             xrpnt = ((real *) xr) + (*m++);
  684.             lwin = *m++;
  685.             cb = *m++;
  686.             if(lwin == 3) {
  687.               v = gr_info->pow2gain[(*scf++) << shift];
  688.               step = 1;
  689.             }
  690.             else {
  691.               v = gr_info->full_gain[lwin][(*scf++) << shift];
  692.               step = 3;
  693.             }
  694.           }
  695.           mc--;
  696.         }
  697.         if( (a & (0x8>>i)) ) {
  698.           max[lwin] = cb;
  699.           part2remain--;
  700.           if(part2remain < 0) {
  701.             part2remain++;
  702.             break;
  703.           }
  704.           if(get1bit()) 
  705.             *xrpnt = -v;
  706.           else
  707.             *xrpnt = v;
  708.         }
  709.         else
  710.           *xrpnt = 0.0;
  711.         xrpnt += step;
  712.       }
  713.     }
  714.  
  715.   //MessageBox(NULL, "DEQUANTIZE5", "", MB_OK);
  716.     while( m < me ) {
  717.       if(!mc) {
  718.         mc = *m++;
  719.         xrpnt = ((real *) xr) + *m++;
  720.         if( (*m++) == 3)
  721.           step = 1;
  722.         else
  723.           step = 3;
  724.         m++; /* cb */
  725.       }
  726.       mc--;
  727.       *xrpnt = 0.0;
  728.       xrpnt += step;
  729.       *xrpnt = 0.0;
  730.       xrpnt += step;
  731. /* we could add a little opt. here:
  732.  * if we finished a band for window 3 or a long band
  733.  * further bands could copied in a simple loop without a
  734.  * special 'map' decoding
  735.  */
  736.     }
  737.   //MessageBox(NULL, "DEQUANTIZE6", "", MB_OK);
  738.     gr_info->maxband[0] = max[0]+1;
  739.     gr_info->maxband[1] = max[1]+1;
  740.     gr_info->maxband[2] = max[2]+1;
  741.     gr_info->maxbandl = max[3]+1;
  742.     {
  743.       int rmax = max[0] > max[1] ? max[0] : max[1];
  744.       rmax = (rmax > max[2] ? rmax : max[2]) + 1;
  745.       gr_info->maxb = rmax ? shortLimit[sfreq][rmax] : longLimit[sfreq][max[3]+1];
  746.     }
  747.   }
  748.   else {
  749. /*
  750.      * decoding with 'long' BandIndex table (block_type != 2)
  751.      */
  752.   //MessageBox(NULL, "DEQUANTIZE7", "", MB_OK);
  753.     int *pretab = gr_info->preflag ? pretab1 : pretab2;
  754.     int i,max = -1;
  755.     int cb = 0;
  756.     register int *m = map[sfreq][2];
  757.     register real v = 0.0;
  758.     register int mc = 0;
  759. #if 0
  760.     me = mapend[sfreq][2];
  761. #endif
  762. /*
  763.      * long hash table values
  764.      */
  765. //MessageBox(NULL, "DEQUANTIZE8", "", MB_OK);
  766.     for(i=0;i<3;i++) {
  767.       int lp = l[i];
  768.       struct newhuff *h = ht+gr_info->table_select[i];
  769.       for(;lp;lp--,mc--) {
  770.         int x,y;
  771.         if(!mc) {
  772.           mc = *m++;
  773.           v = gr_info->pow2gain[((*scf++) + (*pretab++)) << shift];
  774.           cb = *m++;
  775.         }
  776.         {
  777.           register short *val = h->table;
  778.           while((y=*val++)<0) {
  779.             if (get1bit())
  780.               val -= y;
  781.             part2remain--;
  782.           }
  783.           x = y >> 4;
  784.           y &= 0xf;
  785.         }
  786.         if (x == 15) {
  787.           max = cb;
  788.           part2remain -= h->linbits+1;
  789.           x += getbits(h->linbits);
  790.           if(get1bit())
  791.             *xrpnt++ = -ispow[x] * v;
  792.           else
  793.             *xrpnt++ =  ispow[x] * v;
  794.         }
  795.         else if(x) {
  796.           max = cb;
  797.           if(get1bit())
  798.             *xrpnt++ = -ispow[x] * v;
  799.           else
  800.             *xrpnt++ =  ispow[x] * v;
  801.           part2remain--;
  802.         }
  803.         else
  804.           *xrpnt++ = 0.0;
  805.         if (y == 15) {
  806.           max = cb;
  807.           part2remain -= h->linbits+1;
  808.           y += getbits(h->linbits);
  809.           if(get1bit())
  810.             *xrpnt++ = -ispow[y] * v;
  811.           else
  812.             *xrpnt++ =  ispow[y] * v;
  813.         }
  814.         else if(y) {
  815.           max = cb;
  816.           if(get1bit())
  817.             *xrpnt++ = -ispow[y] * v;
  818.           else
  819.             *xrpnt++ =  ispow[y] * v;
  820.           part2remain--;
  821.         }
  822.         else
  823.           *xrpnt++ = 0.0;
  824.       }
  825.     }
  826.   //MessageBox(NULL, "DEQUANTIZE9", "", MB_OK);
  827. /*
  828.      * short (count1table) values
  829.      */
  830.     for(;l3 && (part2remain > 0);l3--) {
  831.       struct newhuff *h = htc+gr_info->count1table_select;
  832.       register short *val = h->table,a;
  833.   //MessageBox(NULL, "DEQUANTIZE91", "", MB_OK);
  834.       while((a=*val++)<0) {
  835.         part2remain--;
  836.         if(part2remain < 0) {
  837.           part2remain++;
  838.           a = 0;
  839.           break;
  840.         }
  841.         if (get1bit())
  842.           val -= a;
  843.       }
  844.     //MessageBox(NULL, "DEQUANTIZE92", "", MB_OK);
  845.       for(i=0;i<4;i++) {
  846.         if(!(i & 1)) {
  847.           if(!mc) {
  848.         
  849.   //MessageBox(NULL, "DEQUANTIZE BEFORE BEFORE", "", MB_OK);
  850.     
  851. mc = *m++;
  852.             cb = *m++;
  853.   //MessageBox(NULL, "DEQUANTIZE BEFORE", "", MB_OK);
  854. v = gr_info->pow2gain[((*scf++) + (*pretab++)) << shift];
  855.             //MessageBox(NULL, "DEQUANTIZE AFTER", "", MB_OK);
  856. }
  857.           mc--;
  858.         }
  859. //MessageBox(NULL, "DEQUANTIZE93", "", MB_OK);
  860.         if ( (a & (0x8>>i)) ) {
  861.           max = cb;
  862.           part2remain--;
  863.           if(part2remain < 0) {
  864.             part2remain++;
  865.             break;
  866.           }
  867.           if(get1bit())
  868.             *xrpnt++ = -v;
  869.           else
  870.             *xrpnt++ = v;
  871.         }
  872.         else
  873.           *xrpnt++ = 0.0;
  874.       }
  875.     }
  876.   //MessageBox(NULL, "DEQUANTIZE10", "", MB_OK);
  877. /* 
  878.      * zero part
  879.      */
  880.     for(i=(&xr[SBLIMIT][0]-xrpnt)>>1;i;i--) {
  881.       *xrpnt++ = 0.0;
  882.       *xrpnt++ = 0.0;
  883.     }
  884.     gr_info->maxbandl = max+1;
  885.     gr_info->maxb = longLimit[sfreq][gr_info->maxbandl];
  886.   }
  887.   while( part2remain > 16 ) {
  888.     getbits(16); /* Dismiss stuffing Bits */
  889.     part2remain -= 16;
  890.   }
  891.     ///MessageBox(NULL, "DEQUANTIZE11", "", MB_OK);
  892.   if(part2remain > 0)
  893.     getbits(part2remain);
  894.   else if(part2remain < 0) {
  895.     return 1;
  896.   }
  897.   return 0;
  898. }
  899. /* 
  900.  * III_stereo: calculate real channel values for Joint-I-Stereo-mode
  901.  */
  902. static void III_i_stereo(real xr_buf[2][SBLIMIT][SSLIMIT],int *scalefac,
  903.    struct gr_info_s *gr_info,int sfreq,int ms_stereo,int lsf)
  904. {
  905.       real (*xr)[SBLIMIT*SSLIMIT] = (real (*)[SBLIMIT*SSLIMIT] ) xr_buf;
  906.       struct bandInfoStruct *bi = &bandInfo[sfreq];
  907.       real *tab1,*tab2;
  908.       if(lsf) {
  909.         int p = gr_info->scalefac_compress & 0x1;
  910.     if(ms_stereo) {
  911.           tab1 = pow1_2[p]; tab2 = pow2_2[p];
  912.         }
  913.         else {
  914.           tab1 = pow1_1[p]; tab2 = pow2_1[p];
  915.         }
  916.       }
  917.       else {
  918.         if(ms_stereo) {
  919.           tab1 = tan1_2; tab2 = tan2_2;
  920.         }
  921.         else {
  922.           tab1 = tan1_1; tab2 = tan2_1;
  923.         }
  924.       }
  925.       if (gr_info->block_type == 2)
  926.       {
  927.          int lwin,do_l = 0;
  928.          if( gr_info->mixed_block_flag )
  929.            do_l = 1;
  930.          for (lwin=0;lwin<3;lwin++) /* process each window */
  931.          {
  932.              /* get first band with zero values */
  933.            int is_p,sb,idx,sfb = gr_info->maxband[lwin];  /* sfb is minimal 3 for mixed mode */
  934.            if(sfb > 3)
  935.              do_l = 0;
  936.            for(;sfb<12;sfb++)
  937.            {
  938.              is_p = scalefac[sfb*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */ 
  939.              if(is_p != 7) {
  940.                real t1,t2;
  941.                sb = bi->shortDiff[sfb];
  942.                idx = bi->shortIdx[sfb] + lwin;
  943.                t1 = tab1[is_p]; t2 = tab2[is_p];
  944.                for (; sb > 0; sb--,idx+=3)
  945.                {
  946.                  real v = xr[0][idx];
  947.                  xr[0][idx] = v * t1;
  948.                  xr[1][idx] = v * t2;
  949.                }
  950.              }
  951.            }
  952. #if 1
  953. /* in the original: copy 10 to 11 , here: copy 11 to 12 
  954. maybe still wrong??? (copy 12 to 13?) */
  955.            is_p = scalefac[11*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */
  956.            sb = bi->shortDiff[12];
  957.            idx = bi->shortIdx[12] + lwin;
  958. #else
  959.            is_p = scalefac[10*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */
  960.            sb = bi->shortDiff[11];
  961.            idx = bi->shortIdx[11] + lwin;
  962. #endif
  963.            if(is_p != 7)
  964.            {
  965.              real t1,t2;
  966.              t1 = tab1[is_p]; t2 = tab2[is_p];
  967.              for ( ; sb > 0; sb--,idx+=3 )
  968.              {  
  969.                real v = xr[0][idx];
  970.                xr[0][idx] = v * t1;
  971.                xr[1][idx] = v * t2;
  972.              }
  973.            }
  974.          } /* end for(lwin; .. ; . ) */
  975.          if (do_l)
  976.          {
  977. /* also check l-part, if ALL bands in the three windows are 'empty'
  978.  * and mode = mixed_mode 
  979.  */
  980.            int sfb = gr_info->maxbandl;
  981.            int idx = bi->longIdx[sfb];
  982.            for ( ; sfb<8; sfb++ )
  983.            {
  984.              int sb = bi->longDiff[sfb];
  985.              int is_p = scalefac[sfb]; /* scale: 0-15 */
  986.              if(is_p != 7) {
  987.                real t1,t2;
  988.                t1 = tab1[is_p]; t2 = tab2[is_p];
  989.                for ( ; sb > 0; sb--,idx++)
  990.                {
  991.                  real v = xr[0][idx];
  992.                  xr[0][idx] = v * t1;
  993.                  xr[1][idx] = v * t2;
  994.                }
  995.              }
  996.              else 
  997.                idx += sb;
  998.            }
  999.          }     
  1000.       } 
  1001.       else /* ((gr_info->block_type != 2)) */
  1002.       {
  1003.         int sfb = gr_info->maxbandl;
  1004.         int is_p,idx = bi->longIdx[sfb];
  1005.         for ( ; sfb<21; sfb++)
  1006.         {
  1007.           int sb = bi->longDiff[sfb];
  1008.           is_p = scalefac[sfb]; /* scale: 0-15 */
  1009.           if(is_p != 7) {
  1010.             real t1,t2;
  1011.             t1 = tab1[is_p]; t2 = tab2[is_p];
  1012.             for ( ; sb > 0; sb--,idx++)
  1013.             {
  1014.                real v = xr[0][idx];
  1015.                xr[0][idx] = v * t1;
  1016.                xr[1][idx] = v * t2;
  1017.             }
  1018.           }
  1019.           else
  1020.             idx += sb;
  1021.         }
  1022.         is_p = scalefac[20]; /* copy l-band 20 to l-band 21 */
  1023.         if(is_p != 7)
  1024.         {
  1025.           int sb;
  1026.           real t1 = tab1[is_p],t2 = tab2[is_p]; 
  1027.           for ( sb = bi->longDiff[21]; sb > 0; sb--,idx++ )
  1028.           {
  1029.             real v = xr[0][idx];
  1030.             xr[0][idx] = v * t1;
  1031.             xr[1][idx] = v * t2;
  1032.           }
  1033.         }
  1034.       } /* ... */
  1035. }
  1036. static void III_antialias(real xr[SBLIMIT][SSLIMIT],struct gr_info_s *gr_info)
  1037. {
  1038.    int sblim;
  1039.    if(gr_info->block_type == 2)
  1040.    {
  1041.       if(!gr_info->mixed_block_flag) 
  1042.         return;
  1043.       sblim = 1; 
  1044.    }
  1045.    else {
  1046.      sblim = gr_info->maxb-1;
  1047.    }
  1048.    /* 31 alias-reduction operations between each pair of sub-bands */
  1049.    /* with 8 butterflies between each pair                         */
  1050.    {
  1051.      int sb;
  1052.      real *xr1=(real *) xr[1];
  1053.      for(sb=sblim;sb;sb--,xr1+=10)
  1054.      {
  1055.        int ss;
  1056.        real *cs=aa_cs,*ca=aa_ca;
  1057.        real *xr2 = xr1;
  1058.        for(ss=7;ss>=0;ss--)
  1059.        {       /* upper and lower butterfly inputs */
  1060.          register real bu = *--xr2,bd = *xr1;
  1061.          *xr2   = (bu * (*cs)   ) - (bd * (*ca)   );
  1062.          *xr1++ = (bd * (*cs++) ) + (bu * (*ca++) );
  1063.        }
  1064.      }
  1065.   }
  1066. }
  1067. /*
  1068.  DCT insipired by Jeff Tsay's DCT from the maplay package
  1069.  this is an optimized version with manual unroll.
  1070.  References:
  1071.  [1] S. Winograd: "On Computing the Discrete Fourier Transform",
  1072.      Mathematics of Computation, Volume 32, Number 141, January 1978,
  1073.      Pages 175-199
  1074. */
  1075. static void dct36(real *inbuf,real *o1,real *o2,real *wintab,real *tsbuf)
  1076. {
  1077.   {
  1078.     register real *in = inbuf;
  1079.     in[17]+=in[16]; in[16]+=in[15]; in[15]+=in[14];
  1080.     in[14]+=in[13]; in[13]+=in[12]; in[12]+=in[11];
  1081.     in[11]+=in[10]; in[10]+=in[9];  in[9] +=in[8];
  1082.     in[8] +=in[7];  in[7] +=in[6];  in[6] +=in[5];
  1083.     in[5] +=in[4];  in[4] +=in[3];  in[3] +=in[2];
  1084.     in[2] +=in[1];  in[1] +=in[0];
  1085.     in[17]+=in[15]; in[15]+=in[13]; in[13]+=in[11]; in[11]+=in[9];
  1086.     in[9] +=in[7];  in[7] +=in[5];  in[5] +=in[3];  in[3] +=in[1];
  1087.   {
  1088. #define MACRO0(v) { 
  1089.     real tmp; 
  1090.     out2[9+(v)] = (tmp = sum0 + sum1) * w[27+(v)]; 
  1091.     out2[8-(v)] = tmp * w[26-(v)];  } 
  1092.     sum0 -= sum1; 
  1093.     ts[SBLIMIT*(8-(v))] = out1[8-(v)] + sum0 * w[8-(v)]; 
  1094.     ts[SBLIMIT*(9+(v))] = out1[9+(v)] + sum0 * w[9+(v)]; 
  1095. #define MACRO1(v) { 
  1096. real sum0,sum1; 
  1097.     sum0 = tmp1a + tmp2a; 
  1098. sum1 = (tmp1b + tmp2b) * tfcos36[(v)]; 
  1099. MACRO0(v); }
  1100. #define MACRO2(v) { 
  1101.     real sum0,sum1; 
  1102.     sum0 = tmp2a - tmp1a; 
  1103.     sum1 = (tmp2b - tmp1b) * tfcos36[(v)]; 
  1104. MACRO0(v); }
  1105.     register const real *c = COS9;
  1106.     register real *out2 = o2;
  1107. register real *w = wintab;
  1108. register real *out1 = o1;
  1109. register real *ts = tsbuf;
  1110.     real ta33,ta66,tb33,tb66;
  1111.     ta33 = in[2*3+0] * c[3];
  1112.     ta66 = in[2*6+0] * c[6];
  1113.     tb33 = in[2*3+1] * c[3];
  1114.     tb66 = in[2*6+1] * c[6];
  1115.     { 
  1116.       real tmp1a,tmp2a,tmp1b,tmp2b;
  1117.       tmp1a =             in[2*1+0] * c[1] + ta33 + in[2*5+0] * c[5] + in[2*7+0] * c[7];
  1118.       tmp1b =             in[2*1+1] * c[1] + tb33 + in[2*5+1] * c[5] + in[2*7+1] * c[7];
  1119.       tmp2a = in[2*0+0] + in[2*2+0] * c[2] + in[2*4+0] * c[4] + ta66 + in[2*8+0] * c[8];
  1120.       tmp2b = in[2*0+1] + in[2*2+1] * c[2] + in[2*4+1] * c[4] + tb66 + in[2*8+1] * c[8];
  1121.       MACRO1(0);
  1122.       MACRO2(8);
  1123.     }
  1124.     {
  1125.       real tmp1a,tmp2a,tmp1b,tmp2b;
  1126.       tmp1a = ( in[2*1+0] - in[2*5+0] - in[2*7+0] ) * c[3];
  1127.       tmp1b = ( in[2*1+1] - in[2*5+1] - in[2*7+1] ) * c[3];
  1128.       tmp2a = ( in[2*2+0] - in[2*4+0] - in[2*8+0] ) * c[6] - in[2*6+0] + in[2*0+0];
  1129.       tmp2b = ( in[2*2+1] - in[2*4+1] - in[2*8+1] ) * c[6] - in[2*6+1] + in[2*0+1];
  1130.       MACRO1(1);
  1131.       MACRO2(7);
  1132.     }
  1133.     {
  1134.       real tmp1a,tmp2a,tmp1b,tmp2b;
  1135.       tmp1a =             in[2*1+0] * c[5] - ta33 - in[2*5+0] * c[7] + in[2*7+0] * c[1];
  1136.       tmp1b =             in[2*1+1] * c[5] - tb33 - in[2*5+1] * c[7] + in[2*7+1] * c[1];
  1137.       tmp2a = in[2*0+0] - in[2*2+0] * c[8] - in[2*4+0] * c[2] + ta66 + in[2*8+0] * c[4];
  1138.       tmp2b = in[2*0+1] - in[2*2+1] * c[8] - in[2*4+1] * c[2] + tb66 + in[2*8+1] * c[4];
  1139.       MACRO1(2);
  1140.       MACRO2(6);
  1141.     }
  1142.     {
  1143.       real tmp1a,tmp2a,tmp1b,tmp2b;
  1144.       tmp1a =             in[2*1+0] * c[7] - ta33 + in[2*5+0] * c[1] - in[2*7+0] * c[5];
  1145.       tmp1b =             in[2*1+1] * c[7] - tb33 + in[2*5+1] * c[1] - in[2*7+1] * c[5];
  1146.       tmp2a = in[2*0+0] - in[2*2+0] * c[4] + in[2*4+0] * c[8] + ta66 - in[2*8+0] * c[2];
  1147.       tmp2b = in[2*0+1] - in[2*2+1] * c[4] + in[2*4+1] * c[8] + tb66 - in[2*8+1] * c[2];
  1148.       MACRO1(3);
  1149.       MACRO2(5);
  1150.     }
  1151. {
  1152. real sum0,sum1;
  1153.      sum0 =  in[2*0+0] - in[2*2+0] + in[2*4+0] - in[2*6+0] + in[2*8+0];
  1154.      sum1 = (in[2*0+1] - in[2*2+1] + in[2*4+1] - in[2*6+1] + in[2*8+1] ) * tfcos36[4];
  1155. MACRO0(4);
  1156. }
  1157.   }
  1158.   }
  1159. }
  1160. /*
  1161.  * new DCT12
  1162.  */
  1163. static void dct12(real *in,real *rawout1,real *rawout2,register real *wi,register real *ts)
  1164. {
  1165. #define DCT12_PART1 
  1166.              in5 = in[5*3];  
  1167.      in5 += (in4 = in[4*3]); 
  1168.      in4 += (in3 = in[3*3]); 
  1169.      in3 += (in2 = in[2*3]); 
  1170.      in2 += (in1 = in[1*3]); 
  1171.      in1 += (in0 = in[0*3]); 
  1172.                              
  1173.      in5 += in3; in3 += in1; 
  1174.                              
  1175.      in2 *= COS6_1; 
  1176.      in3 *= COS6_1; 
  1177. #define DCT12_PART2 
  1178.      in0 += in4 * COS6_2; 
  1179.                           
  1180.      in4 = in0 + in2;     
  1181.      in0 -= in2;          
  1182.                           
  1183.      in1 += in5 * COS6_2; 
  1184.                           
  1185.      in5 = (in1 + in3) * tfcos12[0]; 
  1186.      in1 = (in1 - in3) * tfcos12[2]; 
  1187.                          
  1188.      in3 = in4 + in5;    
  1189.      in4 -= in5;         
  1190.                          
  1191.      in2 = in0 + in1;    
  1192.      in0 -= in1;
  1193.    {
  1194.      real in0,in1,in2,in3,in4,in5;
  1195.      register real *out1 = rawout1;
  1196.      ts[SBLIMIT*0] = out1[0]; ts[SBLIMIT*1] = out1[1]; ts[SBLIMIT*2] = out1[2];
  1197.      ts[SBLIMIT*3] = out1[3]; ts[SBLIMIT*4] = out1[4]; ts[SBLIMIT*5] = out1[5];
  1198.  
  1199.      DCT12_PART1
  1200.      {
  1201.        real tmp0,tmp1 = (in0 - in4);
  1202.        {
  1203.          real tmp2 = (in1 - in5) * tfcos12[1];
  1204.          tmp0 = tmp1 + tmp2;
  1205.          tmp1 -= tmp2;
  1206.        }
  1207.        ts[(17-1)*SBLIMIT] = out1[17-1] + tmp0 * wi[11-1];
  1208.        ts[(12+1)*SBLIMIT] = out1[12+1] + tmp0 * wi[6+1];
  1209.        ts[(6 +1)*SBLIMIT] = out1[6 +1] + tmp1 * wi[1];
  1210.        ts[(11-1)*SBLIMIT] = out1[11-1] + tmp1 * wi[5-1];
  1211.      }
  1212.      DCT12_PART2
  1213.      ts[(17-0)*SBLIMIT] = out1[17-0] + in2 * wi[11-0];
  1214.      ts[(12+0)*SBLIMIT] = out1[12+0] + in2 * wi[6+0];
  1215.      ts[(12+2)*SBLIMIT] = out1[12+2] + in3 * wi[6+2];
  1216.      ts[(17-2)*SBLIMIT] = out1[17-2] + in3 * wi[11-2];
  1217.      ts[(6+0)*SBLIMIT]  = out1[6+0] + in0 * wi[0];
  1218.      ts[(11-0)*SBLIMIT] = out1[11-0] + in0 * wi[5-0];
  1219.      ts[(6+2)*SBLIMIT]  = out1[6+2] + in4 * wi[2];
  1220.      ts[(11-2)*SBLIMIT] = out1[11-2] + in4 * wi[5-2];
  1221.   }
  1222.   in++;
  1223.   {
  1224.      real in0,in1,in2,in3,in4,in5;
  1225.      register real *out2 = rawout2;
  1226.  
  1227.      DCT12_PART1
  1228.      {
  1229.        real tmp0,tmp1 = (in0 - in4);
  1230.        {
  1231.          real tmp2 = (in1 - in5) * tfcos12[1];
  1232.          tmp0 = tmp1 + tmp2;
  1233.          tmp1 -= tmp2;
  1234.        }
  1235.        out2[5-1] = tmp0 * wi[11-1];
  1236.        out2[0+1] = tmp0 * wi[6+1];
  1237.        ts[(12+1)*SBLIMIT] += tmp1 * wi[1];
  1238.        ts[(17-1)*SBLIMIT] += tmp1 * wi[5-1];
  1239.      }
  1240.      DCT12_PART2
  1241.      out2[5-0] = in2 * wi[11-0];
  1242.      out2[0+0] = in2 * wi[6+0];
  1243.      out2[0+2] = in3 * wi[6+2];
  1244.      out2[5-2] = in3 * wi[11-2];
  1245.      ts[(12+0)*SBLIMIT] += in0 * wi[0];
  1246.      ts[(17-0)*SBLIMIT] += in0 * wi[5-0];
  1247.      ts[(12+2)*SBLIMIT] += in4 * wi[2];
  1248.      ts[(17-2)*SBLIMIT] += in4 * wi[5-2];
  1249.   }
  1250.   in++; 
  1251.   {
  1252.      real in0,in1,in2,in3,in4,in5;
  1253.      register real *out2 = rawout2;
  1254.      out2[12]=out2[13]=out2[14]=out2[15]=out2[16]=out2[17]=0.0;
  1255.      DCT12_PART1
  1256.      {
  1257.        real tmp0,tmp1 = (in0 - in4);
  1258.        {
  1259.          real tmp2 = (in1 - in5) * tfcos12[1];
  1260.          tmp0 = tmp1 + tmp2;
  1261.          tmp1 -= tmp2;
  1262.        }
  1263.        out2[11-1] = tmp0 * wi[11-1];
  1264.        out2[6 +1] = tmp0 * wi[6+1];
  1265.        out2[0+1] += tmp1 * wi[1];
  1266.        out2[5-1] += tmp1 * wi[5-1];
  1267.      }
  1268.      DCT12_PART2
  1269.      out2[11-0] = in2 * wi[11-0];
  1270.      out2[6 +0] = in2 * wi[6+0];
  1271.      out2[6 +2] = in3 * wi[6+2];
  1272.      out2[11-2] = in3 * wi[11-2];
  1273.      out2[0+0] += in0 * wi[0];
  1274.      out2[5-0] += in0 * wi[5-0];
  1275.      out2[0+2] += in4 * wi[2];
  1276.      out2[5-2] += in4 * wi[5-2];
  1277.   }
  1278. }
  1279. /*
  1280.  * III_hybrid
  1281.  */
  1282. static void III_hybrid(real fsIn[SBLIMIT][SSLIMIT],real tsOut[SSLIMIT][SBLIMIT],
  1283.    int ch,struct gr_info_s *gr_info)
  1284. {
  1285.    real *tspnt = (real *) tsOut;
  1286.    real (*block)[2][SBLIMIT*SSLIMIT] = gmp->hybrid_block;
  1287.    int *blc = gmp->hybrid_blc;
  1288.    real *rawout1,*rawout2;
  1289.    int bt;
  1290.    int sb = 0;
  1291.    {
  1292.      int b = blc[ch];
  1293.      rawout1=block[b][ch];
  1294.      b=-b+1;
  1295.      rawout2=block[b][ch];
  1296.      blc[ch] = b;
  1297.    }
  1298.   
  1299.    if(gr_info->mixed_block_flag) {
  1300.      sb = 2;
  1301.      dct36(fsIn[0],rawout1,rawout2,win[0],tspnt);
  1302.      dct36(fsIn[1],rawout1+18,rawout2+18,win1[0],tspnt+1);
  1303.      rawout1 += 36; rawout2 += 36; tspnt += 2;
  1304.    }
  1305.  
  1306.    bt = gr_info->block_type;
  1307.    if(bt == 2) {
  1308.      for (; sb<gr_info->maxb; sb+=2,tspnt+=2,rawout1+=36,rawout2+=36) {
  1309.        dct12(fsIn[sb],rawout1,rawout2,win[2],tspnt);
  1310.        dct12(fsIn[sb+1],rawout1+18,rawout2+18,win1[2],tspnt+1);
  1311.      }
  1312.    }
  1313.    else {
  1314.      for (; sb<gr_info->maxb; sb+=2,tspnt+=2,rawout1+=36,rawout2+=36) {
  1315.        dct36(fsIn[sb],rawout1,rawout2,win[bt],tspnt);
  1316.        dct36(fsIn[sb+1],rawout1+18,rawout2+18,win1[bt],tspnt+1);
  1317.      }
  1318.    }
  1319.    for(;sb<SBLIMIT;sb++,tspnt++) {
  1320.      int i;
  1321.      for(i=0;i<SSLIMIT;i++) {
  1322.        tspnt[i*SBLIMIT] = *rawout1++;
  1323.        *rawout2++ = 0.0;
  1324.      }
  1325.    }
  1326. }
  1327. /*
  1328.  * main layer3 handler
  1329.  */
  1330. int do_layer3(struct frame *fr,unsigned char *pcm_sample,int *pcm_point)
  1331. {
  1332.   int gr, ch, ss,clip=0;
  1333.   int scalefacs[2][39]; /* max 39 for short[13][3] mode, mixed: 38, long: 22 */
  1334.   struct III_sideinfo sideinfo;
  1335.   int stereo = fr->stereo;
  1336.   int single = fr->single;
  1337.   int ms_stereo,i_stereo;
  1338.   int sfreq = fr->sampling_frequency;
  1339.   int stereo1,granules;
  1340.   //MessageBox(NULL, "entering layer 3", "", MB_OK);
  1341.   if(stereo == 1) { /* stream is mono */
  1342.     stereo1 = 1;
  1343.     single = 0;
  1344.   }
  1345.   else if(single >= 0) /* stream is stereo, but force to mono */
  1346.     stereo1 = 1;
  1347.   else
  1348.     stereo1 = 2;
  1349.   if(fr->mode == MPG_MD_JOINT_STEREO) {
  1350.     ms_stereo = fr->mode_ext & 0x2;
  1351.     i_stereo  = fr->mode_ext & 0x1;
  1352.   }
  1353.   else
  1354.     ms_stereo = i_stereo = 0;
  1355.   //MessageBox(NULL, "entering layer 3-1", "", MB_OK);
  1356.   if(fr->lsf) {
  1357.     granules = 1;
  1358.     III_get_side_info_2(&sideinfo,stereo,ms_stereo,sfreq,single);
  1359.   }
  1360.   else {
  1361.     granules = 2;
  1362.     III_get_side_info_1(&sideinfo,stereo,ms_stereo,sfreq,single);
  1363.   }
  1364.   //MessageBox(NULL, "entering layer 3-2", "", MB_OK);
  1365.   if(set_pointer(sideinfo.main_data_begin) == MP3_ERR)
  1366.     return 0;
  1367.   for (gr=0;gr<granules;gr++) 
  1368.   {
  1369.     real hybridIn[2][SBLIMIT][SSLIMIT];
  1370.     real hybridOut[2][SSLIMIT][SBLIMIT];
  1371.     {
  1372.       struct gr_info_s *gr_info = &(sideinfo.ch[0].gr[gr]);
  1373.       long part2bits;
  1374.       
  1375.   //MessageBox(NULL, "entering layer 3-21", "", MB_OK);
  1376.   if(fr->lsf)
  1377.         part2bits = III_get_scale_factors_2(scalefacs[0],gr_info,0);
  1378.       else {
  1379.         part2bits = III_get_scale_factors_1(scalefacs[0],gr_info);
  1380.       }
  1381.   //MessageBox(NULL, "entering layer 3-22", "", MB_OK);
  1382.       if(III_dequantize_sample(hybridIn[0], scalefacs[0],gr_info,sfreq,part2bits))
  1383.         return clip;
  1384.     //MessageBox(NULL, "DEQAUNTIZE END", "", MB_OK);
  1385.     }
  1386.     if(stereo == 2) {
  1387.       struct gr_info_s *gr_info = &(sideinfo.ch[1].gr[gr]);
  1388.       long part2bits;
  1389.      //MessageBox(NULL, "entering layer 3-23", "", MB_OK);
  1390.       if(fr->lsf) 
  1391.         part2bits = III_get_scale_factors_2(scalefacs[1],gr_info,i_stereo);
  1392.       else {
  1393.         part2bits = III_get_scale_factors_1(scalefacs[1],gr_info);
  1394.       }
  1395.      //MessageBox(NULL, "entering layer 3-24", "", MB_OK);
  1396.       if(III_dequantize_sample(hybridIn[1],scalefacs[1],gr_info,sfreq,part2bits))
  1397.           return clip;
  1398.      //MessageBox(NULL, "entering layer 3-25", "", MB_OK);
  1399.       if(ms_stereo) {
  1400.         int i;
  1401.         for(i=0;i<SBLIMIT*SSLIMIT;i++) {
  1402.           real tmp0,tmp1;
  1403.           tmp0 = ((real *) hybridIn[0])[i];
  1404.           tmp1 = ((real *) hybridIn[1])[i];
  1405.           ((real *) hybridIn[0])[i] = tmp0 + tmp1;
  1406.           ((real *) hybridIn[1])[i] = tmp0 - tmp1;  
  1407.         }
  1408.       }
  1409.      //MessageBox(NULL, "entering layer 3-26", "", MB_OK);
  1410. if(i_stereo)
  1411. III_i_stereo(hybridIn,scalefacs[1],gr_info,sfreq,ms_stereo,fr->lsf);
  1412. if(ms_stereo || i_stereo || (single == 3) ) {
  1413. if(gr_info->maxb > sideinfo.ch[0].gr[gr].maxb) 
  1414. sideinfo.ch[0].gr[gr].maxb = gr_info->maxb;
  1415. else
  1416. gr_info->maxb = sideinfo.ch[0].gr[gr].maxb;
  1417. }
  1418. //MessageBox(NULL, "entering layer 3-27", "", MB_OK);
  1419. switch(single) {
  1420. case 3: {
  1421. register int i;
  1422. register real *in0 = (real *) hybridIn[0],*in1 = (real *) hybridIn[1];
  1423. for(i=0;i<SSLIMIT*gr_info->maxb;i++,in0++)
  1424. *in0 = (*in0 + *in1++); /* *0.5 done by pow-scale */ 
  1425.            break;
  1426. }
  1427. case 1: {
  1428. register int i;
  1429. register real *in0 = (real *) hybridIn[0],*in1 = (real *) hybridIn[1];
  1430. for(i=0;i<SSLIMIT*gr_info->maxb;i++)
  1431. *in0++ = *in1++;
  1432. break;
  1433. }
  1434. }
  1435. }
  1436.      //MessageBox(NULL, "entering layer 3-28", "", MB_OK);
  1437. for(ch=0;ch<stereo1;ch++) {
  1438. struct gr_info_s *gr_info = &(sideinfo.ch[ch].gr[gr]);
  1439. III_antialias(hybridIn[ch],gr_info);
  1440. III_hybrid(hybridIn[ch], hybridOut[ch], ch,gr_info);
  1441. }
  1442.      //MessageBox(NULL, "entering layer 3-29", "", MB_OK);
  1443. if (single >= 0) {
  1444.      for(ss=0;ss<SSLIMIT;ss++)
  1445.          clip += synth_1to1_mono(hybridOut[0][ss],pcm_sample,pcm_point);
  1446.        } else {
  1447.      for(ss=0;ss<SSLIMIT;ss++) {
  1448.          int p1 = *pcm_point;
  1449.          clip += synth_1to1(hybridOut[0][ss],0,pcm_sample,&p1);
  1450.          clip += synth_1to1(hybridOut[1][ss],1,pcm_sample,pcm_point);
  1451. }
  1452. }
  1453. }
  1454.     //MessageBox(NULL, "entering layer 3-3", "", MB_OK);
  1455. return clip;
  1456. }