layer3.c
上传用户:yisoukefu
上传日期:2020-08-09
资源大小:39506k
文件大小:37k
源码类别:

其他游戏

开发平台:

Visual C++

  1. /*
  2.  * Modified for use with MPlayer, for details see the changelog at
  3.  * http://svn.mplayerhq.hu/mplayer/trunk/
  4.  * $Id: layer3.c 23485 2007-06-06 05:16:08Z zuxy $
  5.  */
  6. /* 
  7.  * Mpeg Layer-3 audio decoder 
  8.  * --------------------------
  9.  * copyright (c) 1995-1999 by Michael Hipp.
  10.  * All rights reserved. See also 'README'
  11.  *
  12.  * Optimize-TODO: put short bands into the band-field without the stride 
  13.  *                of 3 reals
  14.  * Length-optimze: unify long and short band code where it is possible
  15.  */ 
  16. #if 0
  17. #define L3_DEBUG 1
  18. #endif
  19. #if 0
  20. #define CUT_HF
  21. #endif
  22. # define REAL_MUL(x, y) ((x) * (y))
  23. static real ispow[8207];
  24. static real aa_ca[8],aa_cs[8];
  25. static real COS1[12][6];
  26. static real win[4][36];
  27. static real win1[4][36];
  28. static real gainpow2[256+118+4];
  29. /* non static for external 3dnow functions */
  30. real   COS9[9];
  31. static real COS6_1,COS6_2;
  32. real   tfcos36[9];
  33. static real tfcos12[3];
  34. #define NEW_DCT9
  35. #ifdef NEW_DCT9
  36. static real cos9[3],cos18[3];
  37. #endif
  38. struct bandInfoStruct {
  39.   int longIdx[23];
  40.   int longDiff[22];
  41.   int shortIdx[14];
  42.   int shortDiff[13];
  43. };
  44. static int longLimit[9][23];
  45. static int shortLimit[9][14];
  46. static struct bandInfoStruct bandInfo[9] = { 
  47. /* MPEG 1.0 */
  48.  { {0,4,8,12,16,20,24,30,36,44,52,62,74, 90,110,134,162,196,238,288,342,418,576},
  49.    {4,4,4,4,4,4,6,6,8, 8,10,12,16,20,24,28,34,42,50,54, 76,158},
  50.    {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},
  51.    {4,4,4,4,6,8,10,12,14,18,22,30,56} } ,
  52.  { {0,4,8,12,16,20,24,30,36,42,50,60,72, 88,106,128,156,190,230,276,330,384,576},
  53.    {4,4,4,4,4,4,6,6,6, 8,10,12,16,18,22,28,34,40,46,54, 54,192},
  54.    {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},
  55.    {4,4,4,4,6,6,10,12,14,16,20,26,66} } ,
  56.  { {0,4,8,12,16,20,24,30,36,44,54,66,82,102,126,156,194,240,296,364,448,550,576} ,
  57.    {4,4,4,4,4,4,6,6,8,10,12,16,20,24,30,38,46,56,68,84,102, 26} ,
  58.    {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} ,
  59.    {4,4,4,4,6,8,12,16,20,26,34,42,12} }  ,
  60. /* MPEG 2.0 */
  61.  { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576},
  62.    {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54 } ,
  63.    {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} ,
  64.    {4,4,4,6,6,8,10,14,18,26,32,42,18 } } ,
  65. /* changed 19th value fropm 330 to 332 */
  66.  { {0,6,12,18,24,30,36,44,54,66,80,96,114,136,162,194,232,278,332,394,464,540,576},
  67.    {6,6,6,6,6,6,8,10,12,14,16,18,22,26,32,38,46,54,62,70,76,36 } ,
  68.    {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} ,
  69.    {4,4,4,6,8,10,12,14,18,24,32,44,12 } } ,
  70.  { {0,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576},
  71.    {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54 },
  72.    {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},
  73.    {4,4,4,6,8,10,12,14,18,24,30,40,18 } } ,
  74. /* MPEG 2.5 */
  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,6,12,18,24,30,36,44,54,66,80,96,116,140,168,200,238,284,336,396,464,522,576} ,
  80.    {6,6,6,6,6,6,8,10,12,14,16,20,24,28,32,38,46,52,60,68,58,54},
  81.    {0,12,24,36,54,78,108,144,186,240,312,402,522,576},
  82.    {4,4,4,6,8,10,12,14,18,24,30,40,18} },
  83.  { {0,12,24,36,48,60,72,88,108,132,160,192,232,280,336,400,476,566,568,570,572,574,576},
  84.    {12,12,12,12,12,12,16,20,24,28,32,40,48,56,64,76,90,2,2,2,2,2},
  85.    {0, 24, 48, 72,108,156,216,288,372,480,486,492,498,576},
  86.    {8,8,8,12,16,20,24,28,36,2,2,2,26} } ,
  87. };
  88. static int mapbuf0[9][152];
  89. static int mapbuf1[9][156];
  90. static int mapbuf2[9][44];
  91. static int *map[9][3];
  92. static int *mapend[9][3];
  93. static unsigned int n_slen2[512]; /* MPEG 2.0 slen for 'normal' mode */
  94. static unsigned int i_slen2[256]; /* MPEG 2.0 slen for intensity stereo */
  95. static real tan1_1[16],tan2_1[16],tan1_2[16],tan2_2[16];
  96. static real pow1_1[2][16],pow2_1[2][16],pow1_2[2][16],pow2_2[2][16];
  97. /*
  98.  * init tables for layer-3
  99.  */
  100. static void init_layer3(int down_sample_sblimit)
  101. {
  102.   int i,j,k,l;
  103.   for(i=-256;i<118+4;i++)
  104.   {
  105.     if(_has_mmx)
  106.       gainpow2[i+256] = 16384.0 * pow((double)2.0,-0.25 * (double) (i+210) );
  107.     else
  108.       gainpow2[i+256] = pow((double)2.0,-0.25 * (double) (i+210) );
  109.   }
  110.   for(i=0;i<8207;i++)
  111.     ispow[i] = pow((double)i,(double)4.0/3.0);
  112.   for (i=0;i<8;i++)
  113.   {
  114.     static double Ci[8]={-0.6,-0.535,-0.33,-0.185,-0.095,-0.041,-0.0142,-0.0037};
  115.     double sq=sqrt(1.0+Ci[i]*Ci[i]);
  116.     aa_cs[i] = 1.0/sq;
  117.     aa_ca[i] = Ci[i]/sq;
  118.   }
  119.   for(i=0;i<18;i++)
  120.   {
  121.     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 );
  122.     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 );
  123.   }
  124.   for(i=0;i<6;i++)
  125.   {
  126.     win[1][i+18] = 0.5 / cos ( M_PI * (double) (2*(i+18)+19) / 72.0 );
  127.     win[3][i+12] = 0.5 / cos ( M_PI * (double) (2*(i+12)+19) / 72.0 );
  128.     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 );
  129.     win[1][i+30] = win[3][i] = 0.0;
  130.     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 );
  131.   }
  132.   for(i=0;i<9;i++)
  133.     COS9[i] = cos( M_PI / 18.0 * (double) i);
  134.   for(i=0;i<9;i++)
  135.     tfcos36[i] = 0.5 / cos ( M_PI * (double) (i*2+1) / 36.0 );
  136.   for(i=0;i<3;i++)
  137.     tfcos12[i] = 0.5 / cos ( M_PI * (double) (i*2+1) / 12.0 );
  138.   COS6_1 = cos( M_PI / 6.0 * (double) 1);
  139.   COS6_2 = cos( M_PI / 6.0 * (double) 2);
  140. #ifdef NEW_DCT9
  141.   cos9[0] = cos(1.0*M_PI/9.0);
  142.   cos9[1] = cos(5.0*M_PI/9.0);
  143.   cos9[2] = cos(7.0*M_PI/9.0);
  144.   cos18[0] = cos(1.0*M_PI/18.0);
  145.   cos18[1] = cos(11.0*M_PI/18.0);
  146.   cos18[2] = cos(13.0*M_PI/18.0);
  147. #endif
  148.   for(i=0;i<12;i++)
  149.   {
  150.     win[2][i]  = 0.5 * sin( M_PI / 24.0 * (double) (2*i+1) ) / cos ( M_PI * (double) (2*i+7) / 24.0 );
  151.     for(j=0;j<6;j++)
  152.       COS1[i][j] = cos( M_PI / 24.0 * (double) ((2*i+7)*(2*j+1)) );
  153.   }
  154.   for(j=0;j<4;j++) {
  155.     static int len[4] = { 36,36,12,36 };
  156.     for(i=0;i<len[j];i+=2)
  157.       win1[j][i] = + win[j][i];
  158.     for(i=1;i<len[j];i+=2)
  159.       win1[j][i] = - win[j][i];
  160.   }
  161.   for(i=0;i<16;i++)
  162.   {
  163.     double t = tan( (double) i * M_PI / 12.0 );
  164.     tan1_1[i] = t / (1.0+t);
  165.     tan2_1[i] = 1.0 / (1.0 + t);
  166.     tan1_2[i] = M_SQRT2 * t / (1.0+t);
  167.     tan2_2[i] = M_SQRT2 / (1.0 + t);
  168.     for(j=0;j<2;j++) {
  169.       double base = pow(2.0,-0.25*(j+1.0));
  170.       double p1=1.0,p2=1.0;
  171.       if(i > 0) {
  172.         if( i & 1 )
  173.           p1 = pow(base,(i+1.0)*0.5);
  174.         else
  175.           p2 = pow(base,i*0.5);
  176.       }
  177.       pow1_1[j][i] = p1;
  178.       pow2_1[j][i] = p2;
  179.       pow1_2[j][i] = M_SQRT2 * p1;
  180.       pow2_2[j][i] = M_SQRT2 * p2;
  181.     }
  182.   }
  183.   for(j=0;j<9;j++)
  184.   {
  185.    struct bandInfoStruct *bi = &bandInfo[j];
  186.    int *mp;
  187.    int cb,lwin;
  188.    int *bdf;
  189.    mp = map[j][0] = mapbuf0[j];
  190.    bdf = bi->longDiff;
  191.    for(i=0,cb = 0; cb < 8 ; cb++,i+=*bdf++) {
  192.      *mp++ = (*bdf) >> 1;
  193.      *mp++ = i;
  194.      *mp++ = 3;
  195.      *mp++ = cb;
  196.    }
  197.    bdf = bi->shortDiff+3;
  198.    for(cb=3;cb<13;cb++) {
  199.      int l = (*bdf++) >> 1;
  200.      for(lwin=0;lwin<3;lwin++) {
  201.        *mp++ = l;
  202.        *mp++ = i + lwin;
  203.        *mp++ = lwin;
  204.        *mp++ = cb;
  205.      }
  206.      i += 6*l;
  207.    }
  208.    mapend[j][0] = mp;
  209.    mp = map[j][1] = mapbuf1[j];
  210.    bdf = bi->shortDiff+0;
  211.    for(i=0,cb=0;cb<13;cb++) {
  212.      int l = (*bdf++) >> 1;
  213.      for(lwin=0;lwin<3;lwin++) {
  214.        *mp++ = l;
  215.        *mp++ = i + lwin;
  216.        *mp++ = lwin;
  217.        *mp++ = cb;
  218.      }
  219.      i += 6*l;
  220.    }
  221.    mapend[j][1] = mp;
  222.    mp = map[j][2] = mapbuf2[j];
  223.    bdf = bi->longDiff;
  224.    for(cb = 0; cb < 22 ; cb++) {
  225.      *mp++ = (*bdf++) >> 1;
  226.      *mp++ = cb;
  227.    }
  228.    mapend[j][2] = mp;
  229.   }
  230.   for(j=0;j<9;j++) {
  231.     for(i=0;i<23;i++) {
  232.       longLimit[j][i] = (bandInfo[j].longIdx[i] - 1 + 8) / 18 + 1;
  233.       if(longLimit[j][i] > (down_sample_sblimit) )
  234.         longLimit[j][i] = down_sample_sblimit;
  235.     }
  236.     for(i=0;i<14;i++) {
  237.       shortLimit[j][i] = (bandInfo[j].shortIdx[i] - 1) / 18 + 1;
  238.       if(shortLimit[j][i] > (down_sample_sblimit) )
  239.         shortLimit[j][i] = down_sample_sblimit;
  240.     }
  241.   }
  242.   for(i=0;i<5;i++) {
  243.     for(j=0;j<6;j++) {
  244.       for(k=0;k<6;k++) {
  245.         int n = k + j * 6 + i * 36;
  246.         i_slen2[n] = i|(j<<3)|(k<<6)|(3<<12);
  247.       }
  248.     }
  249.   }
  250.   for(i=0;i<4;i++) {
  251.     for(j=0;j<4;j++) {
  252.       for(k=0;k<4;k++) {
  253.         int n = k + j * 4 + i * 16;
  254.         i_slen2[n+180] = i|(j<<3)|(k<<6)|(4<<12);
  255.       }
  256.     }
  257.   }
  258.   for(i=0;i<4;i++) {
  259.     for(j=0;j<3;j++) {
  260.       int n = j + i * 3;
  261.       i_slen2[n+244] = i|(j<<3) | (5<<12);
  262.       n_slen2[n+500] = i|(j<<3) | (2<<12) | (1<<15);
  263.     }
  264.   }
  265.   for(i=0;i<5;i++) {
  266.     for(j=0;j<5;j++) {
  267.       for(k=0;k<4;k++) {
  268.         for(l=0;l<4;l++) {
  269.           int n = l + k * 4 + j * 16 + i * 80;
  270.           n_slen2[n] = i|(j<<3)|(k<<6)|(l<<9)|(0<<12);
  271.         }
  272.       }
  273.     }
  274.   }
  275.   for(i=0;i<5;i++) {
  276.     for(j=0;j<5;j++) {
  277.       for(k=0;k<4;k++) {
  278.         int n = k + j * 4 + i * 20;
  279.         n_slen2[n+400] = i|(j<<3)|(k<<6)|(1<<12);
  280.       }
  281.     }
  282.   }
  283. }
  284. /*
  285.  * read additional side information (for MPEG 1 and MPEG 2)
  286.  */
  287. static int III_get_side_info(struct III_sideinfo *si,int stereo,
  288.  int ms_stereo,int sfreq,int single,int lsf)
  289. {
  290.    int ch, gr;
  291.    int powdiff = (single == 3) ? 4 : 0;
  292.    static const int tabs[2][5] = { { 2,9,5,3,4 } , { 1,8,1,2,9 } };
  293.    const int *tab = tabs[lsf];
  294.    
  295.    si->main_data_begin = getbits(tab[1]);
  296.    if (stereo == 1)
  297.      si->private_bits = getbits_fast(tab[2]);
  298.    else 
  299.      si->private_bits = getbits_fast(tab[3]);
  300.    if(!lsf) {
  301.      for (ch=0; ch<stereo; ch++) {
  302.          si->ch[ch].gr[0].scfsi = -1;
  303.          si->ch[ch].gr[1].scfsi = getbits_fast(4);
  304.      }
  305.    }
  306.    for (gr=0; gr<tab[0]; gr++) {
  307.      for (ch=0; ch<stereo; ch++) {
  308.        register struct gr_info_s *gr_info = &(si->ch[ch].gr[gr]);
  309.        gr_info->part2_3_length = getbits(12);
  310.        gr_info->big_values = getbits(9);
  311.        if(gr_info->big_values > 288) {
  312.             fprintf(stderr,"big_values too large!n");
  313.           gr_info->big_values = 288;
  314.        }
  315.        gr_info->pow2gain = gainpow2+256 - getbits_fast(8) + powdiff;
  316.        if(ms_stereo)
  317.          gr_info->pow2gain += 2;
  318.        gr_info->scalefac_compress = getbits(tab[4]);
  319.        if(get1bit()) { /* window switch flag  */
  320.          int i;
  321. #ifdef L3_DEBUG
  322. if(2*gr_info->big_values > bandInfo[sfreq].shortIdx[12])
  323.   fprintf(stderr,"L3: BigValues too large, doesn't make sense %d %dn",2*gr_info->big_values,bandInfo[sfreq].shortIdx[12]);
  324. #endif
  325.          gr_info->block_type       = getbits_fast(2);
  326.          gr_info->mixed_block_flag = get1bit();
  327.          gr_info->table_select[0]  = getbits_fast(5);
  328.          gr_info->table_select[1]  = getbits_fast(5);
  329.          /*
  330.           * table_select[2] not needed, because there is no region2,
  331.           * but to satisfy some verifications tools we set it either.
  332.           */
  333.          gr_info->table_select[2] = 0;
  334.          for(i=0;i<3;i++)
  335.            gr_info->full_gain[i] = gr_info->pow2gain + (getbits_fast(3)<<3);
  336.          if(gr_info->block_type == 0) {
  337.              fprintf(stderr,"Blocktype == 0 and window-switching == 1 not allowed.n");
  338.            return 0;
  339.          }
  340.       
  341.          /* region_count/start parameters are implicit in this case. */       
  342.          if(!lsf || gr_info->block_type == 2)
  343.            gr_info->region1start = 36>>1;
  344.          else {
  345. /* check this again for 2.5 and sfreq=8 */
  346.            if(sfreq == 8)
  347.              gr_info->region1start = 108>>1;
  348.            else
  349.              gr_info->region1start = 54>>1;
  350.          }
  351.          gr_info->region2start = 576>>1;
  352.        }
  353.        else {
  354.          int i,r0c,r1c;
  355. #ifdef L3_DEBUG
  356. if(2*gr_info->big_values > bandInfo[sfreq].longIdx[21])
  357.   fprintf(stderr,"L3: BigValues too large, doesn't make sense %d %dn",2*gr_info->big_values,bandInfo[sfreq].longIdx[21]);
  358. #endif
  359.          for (i=0; i<3; i++)
  360.            gr_info->table_select[i] = getbits_fast(5);
  361.          r0c = getbits_fast(4);
  362.          r1c = getbits_fast(3);
  363.          gr_info->region1start = bandInfo[sfreq].longIdx[r0c+1] >> 1 ;
  364.          if(r0c + r1c + 2 > 22)
  365.            gr_info->region2start = 576>>1;
  366.          else
  367.            gr_info->region2start = bandInfo[sfreq].longIdx[r0c+1+r1c+1] >> 1;
  368.          gr_info->block_type = 0;
  369.          gr_info->mixed_block_flag = 0;
  370.        }
  371.        if(!lsf)
  372.          gr_info->preflag = get1bit();
  373.        gr_info->scalefac_scale = get1bit();
  374.        gr_info->count1table_select = get1bit();
  375.      }
  376.    }
  377.    return !0;
  378. }
  379. /*
  380.  * read scalefactors
  381.  */
  382. static int III_get_scale_factors_1(int *scf,struct gr_info_s *gr_info)
  383. {
  384.    static const unsigned char slen[2][16] = {
  385.      {0, 0, 0, 0, 3, 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4},
  386.      {0, 1, 2, 3, 0, 1, 2, 3, 1, 2, 3, 1, 2, 3, 2, 3}
  387.    };
  388.    int numbits;
  389.    int num0 = slen[0][gr_info->scalefac_compress];
  390.    int num1 = slen[1][gr_info->scalefac_compress];
  391.     if (gr_info->block_type == 2) {
  392.       int i=18;
  393.       numbits = (num0 + num1) * 18;
  394.       if (gr_info->mixed_block_flag) {
  395.          for (i=8;i;i--)
  396.            *scf++ = getbits_fast(num0);
  397.          i = 9;
  398.          numbits -= num0; /* num0 * 17 + num1 * 18 */
  399.       }
  400.       for (;i;i--)
  401.         *scf++ = getbits_fast(num0);
  402.       for (i = 18; i; i--)
  403.         *scf++ = getbits_fast(num1);
  404.       *scf++ = 0; *scf++ = 0; *scf++ = 0; /* short[13][0..2] = 0 */
  405.     }
  406.     else {
  407.       int i;
  408.       int scfsi = gr_info->scfsi;
  409.       if(scfsi < 0) { /* scfsi < 0 => granule == 0 */
  410.          for(i=11;i;i--)
  411.            *scf++ = getbits_fast(num0);
  412.          for(i=10;i;i--)
  413.            *scf++ = getbits_fast(num1);
  414.          numbits = (num0 + num1) * 10 + num0;
  415.          *scf++ = 0;
  416.       }
  417.       else {
  418.         numbits = 0;
  419.         if(!(scfsi & 0x8)) {
  420.           for (i=0;i<6;i++)
  421.             *scf++ = getbits_fast(num0);
  422.           numbits += num0 * 6;
  423.         }
  424.         else {
  425.           scf += 6; 
  426.         }
  427.         if(!(scfsi & 0x4)) {
  428.           for (i=0;i<5;i++)
  429.             *scf++ = getbits_fast(num0);
  430.           numbits += num0 * 5;
  431.         }
  432.         else {
  433.           scf += 5;
  434.         }
  435.         if(!(scfsi & 0x2)) {
  436.           for(i=0;i<5;i++)
  437.             *scf++ = getbits_fast(num1);
  438.           numbits += num1 * 5;
  439.         }
  440.         else {
  441.           scf += 5; 
  442.         }
  443.         if(!(scfsi & 0x1)) {
  444.           for (i=0;i<5;i++)
  445.             *scf++ = getbits_fast(num1);
  446.           numbits += num1 * 5;
  447.         }
  448.         else {
  449.            scf += 5;
  450.         }
  451.         *scf++ = 0;  /* no l[21] in original sources */
  452.       }
  453.     }
  454.     return numbits;
  455. }
  456. static int III_get_scale_factors_2(int *scf,struct gr_info_s *gr_info,int i_stereo)
  457. {
  458.   unsigned char *pnt;
  459.   int i,j;
  460.   unsigned int slen;
  461.   int n = 0;
  462.   int numbits = 0;
  463.   static unsigned char stab[3][6][4] = {
  464.    { { 6, 5, 5,5 } , { 6, 5, 7,3 } , { 11,10,0,0} ,
  465.      { 7, 7, 7,0 } , { 6, 6, 6,3 } , {  8, 8,5,0} } ,
  466.    { { 9, 9, 9,9 } , { 9, 9,12,6 } , { 18,18,0,0} ,
  467.      {12,12,12,0 } , {12, 9, 9,6 } , { 15,12,9,0} } ,
  468.    { { 6, 9, 9,9 } , { 6, 9,12,6 } , { 15,18,0,0} ,
  469.      { 6,15,12,0 } , { 6,12, 9,6 } , {  6,18,9,0} } }; 
  470.   if(i_stereo) /* i_stereo AND second channel -> do_layer3() checks this */
  471.     slen = i_slen2[gr_info->scalefac_compress>>1];
  472.   else
  473.     slen = n_slen2[gr_info->scalefac_compress];
  474.   gr_info->preflag = (slen>>15) & 0x1;
  475.   n = 0;  
  476.   if( gr_info->block_type == 2 ) {
  477.     n++;
  478.     if(gr_info->mixed_block_flag) n++;
  479.   }
  480.   pnt = stab[n][(slen>>12)&0x7];
  481.   for(i=0;i<4;i++) {
  482.     int num = slen & 0x7;
  483.     slen >>= 3;
  484.     if(num) {
  485.       for(j=0;j<(int)(pnt[i]);j++) *scf++ = getbits_fast(num);
  486.       numbits += pnt[i] * num;
  487.     }
  488.     else {
  489.       for(j=0;j<(int)(pnt[i]);j++) *scf++ = 0;
  490.     }
  491.   }
  492.   
  493.   n = (n << 1) + 1;
  494.   for(i=0;i<n;i++) *scf++ = 0;
  495.   return numbits;
  496. }
  497. 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};
  498. 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};
  499. #define getbitoffset() ((-bitindex)&0x7)
  500. #define getbyte()      (*wordpointer++)
  501. /*
  502.  * Dequantize samples (includes huffman decoding)
  503.  */
  504. /* 24 is enough because tab13 has max. a 19 bit huffvector */
  505. #define BITSHIFT ((sizeof(long)-1)*8)
  506. #define REFRESH_MASK 
  507.   while(num < BITSHIFT) { 
  508.     mask |= ((unsigned long)getbyte())<<(BITSHIFT-num); 
  509.     num += 8; 
  510.     part2remain -= 8; }
  511. static int III_dequantize_sample(real xr[SBLIMIT][SSLIMIT],int *scf,
  512.    struct gr_info_s *gr_info,int sfreq,int part2bits)
  513. {
  514.   int shift = 1 + gr_info->scalefac_scale;
  515.   real *xrpnt = (real *) xr;
  516.   int l[3],l3;
  517.   int part2remain = gr_info->part2_3_length - part2bits;
  518.   int *me;
  519.   int num=getbitoffset();
  520.   long mask;
  521.   /* we must split this, because for num==0 the shift is undefined if you do it in one step */
  522.   mask  = ((unsigned long) getbits(num))<<BITSHIFT;
  523.   mask <<= 8-num;
  524.   part2remain -= num;
  525.   {
  526.     int bv       = gr_info->big_values;
  527.     int region1  = gr_info->region1start;
  528.     int region2  = gr_info->region2start;
  529.     l3 = ((576>>1)-bv)>>1;   
  530. /*
  531.  * we may lose the 'odd' bit here !! 
  532.  * check this later again 
  533.  */
  534.     if(bv <= region1) {
  535.       l[0] = bv; l[1] = l[2] = 0;
  536.     }
  537.     else {
  538.       l[0] = region1;
  539.       if(bv <= region2) {
  540.         l[1] = bv - l[0];  l[2] = 0;
  541.       }
  542.       else {
  543.         l[1] = region2 - l[0]; l[2] = bv - region2;
  544.       }
  545.     }
  546.   }
  547.  
  548.   if(gr_info->block_type == 2) {
  549.     /*
  550.      * decoding with short or mixed mode BandIndex table 
  551.      */
  552.     int i,max[4];
  553.     int step=0,lwin=3,cb=0;
  554.     register real v = 0.0;
  555.     register int *m,mc;
  556.     if(gr_info->mixed_block_flag) {
  557.       max[3] = -1;
  558.       max[0] = max[1] = max[2] = 2;
  559.       m = map[sfreq][0];
  560.       me = mapend[sfreq][0];
  561.     }
  562.     else {
  563.       max[0] = max[1] = max[2] = max[3] = -1;
  564.       /* max[3] not really needed in this case */
  565.       m = map[sfreq][1];
  566.       me = mapend[sfreq][1];
  567.     }
  568.     mc = 0;
  569.     for(i=0;i<2;i++) {
  570.       int lp = l[i];
  571.       struct newhuff *h = ht+gr_info->table_select[i];
  572.       for(;lp;lp--,mc--) {
  573.         register int x,y;
  574.         if( (!mc) ) {
  575.           mc    = *m++;
  576.           xrpnt = ((real *) xr) + (*m++);
  577.           lwin  = *m++;
  578.           cb    = *m++;
  579.           if(lwin == 3) {
  580.             v = gr_info->pow2gain[(*scf++) << shift];
  581.             step = 1;
  582.           }
  583.           else {
  584.             v = gr_info->full_gain[lwin][(*scf++) << shift];
  585.             step = 3;
  586.           }
  587.         }
  588.         {
  589.           register short *val = h->table;
  590.           REFRESH_MASK;
  591.           while((y=*val++)<0) {
  592.             if (mask < 0)
  593.               val -= y;
  594.             num--;
  595.             mask <<= 1;
  596.           }
  597.           x = y >> 4;
  598.           y &= 0xf;
  599.         }
  600.         if(x == 15 && h->linbits) {
  601.           max[lwin] = cb;
  602.           REFRESH_MASK;
  603.           x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);
  604.           num -= h->linbits+1;
  605.           mask <<= h->linbits;
  606.           if(mask < 0)
  607.             *xrpnt = REAL_MUL(-ispow[x], v);
  608.           else
  609.             *xrpnt = REAL_MUL(ispow[x], v);
  610.           mask <<= 1;
  611.         }
  612.         else if(x) {
  613.           max[lwin] = cb;
  614.           if(mask < 0)
  615.             *xrpnt = REAL_MUL(-ispow[x], v);
  616.           else
  617.             *xrpnt = REAL_MUL(ispow[x], v);
  618.           num--;
  619.           mask <<= 1;
  620.         }
  621.         else
  622.           *xrpnt = 0.0;
  623.         xrpnt += step;
  624.         if(y == 15 && h->linbits) {
  625.           max[lwin] = cb;
  626.           REFRESH_MASK;
  627.           y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);
  628.           num -= h->linbits+1;
  629.           mask <<= h->linbits;
  630.           if(mask < 0)
  631.             *xrpnt = REAL_MUL(-ispow[y], v);
  632.           else
  633.             *xrpnt = REAL_MUL(ispow[y], v);
  634.           mask <<= 1;
  635.         }
  636.         else if(y) {
  637.           max[lwin] = cb;
  638.           if(mask < 0)
  639.             *xrpnt = REAL_MUL(-ispow[y], v);
  640.           else
  641.             *xrpnt = REAL_MUL(ispow[y], v);
  642.           num--;
  643.           mask <<= 1;
  644.         }
  645.         else
  646.           *xrpnt = 0.0;
  647.         xrpnt += step;
  648.       }
  649.     }
  650.     for(;l3 && (part2remain+num > 0);l3--) {
  651.       struct newhuff *h = htc+gr_info->count1table_select;
  652.       register short *val = h->table,a;
  653.       REFRESH_MASK;
  654.       while((a=*val++)<0) {
  655.         if (mask < 0)
  656.           val -= a;
  657.         num--;
  658.         mask <<= 1;
  659.       }
  660.       if(part2remain+num <= 0) {
  661. num -= part2remain+num;
  662. break;
  663.       }
  664.       for(i=0;i<4;i++) {
  665.         if(!(i & 1)) {
  666.           if(!mc) {
  667.             mc = *m++;
  668.             xrpnt = ((real *) xr) + (*m++);
  669.             lwin = *m++;
  670.             cb = *m++;
  671.             if(lwin == 3) {
  672.               v = gr_info->pow2gain[(*scf++) << shift];
  673.               step = 1;
  674.             }
  675.             else {
  676.               v = gr_info->full_gain[lwin][(*scf++) << shift];
  677.               step = 3;
  678.             }
  679.           }
  680.           mc--;
  681.         }
  682.         if( (a & (0x8>>i)) ) {
  683.           max[lwin] = cb;
  684.           if(part2remain+num <= 0) {
  685.             break;
  686.           }
  687.           if(mask < 0) 
  688.             *xrpnt = -v;
  689.           else
  690.             *xrpnt = v;
  691.           num--;
  692.           mask <<= 1;
  693.         }
  694.         else
  695.           *xrpnt = 0.0;
  696.         xrpnt += step;
  697.       }
  698.     }
  699.     if(lwin < 3) { /* short band? */
  700.       while(1) {
  701.         for(;mc > 0;mc--) {
  702.           *xrpnt = 0.0; xrpnt += 3; /* short band -> step=3 */
  703.           *xrpnt = 0.0; xrpnt += 3;
  704.         }
  705.         if(m >= me)
  706.           break;
  707.         mc    = *m++;
  708.         xrpnt = ((real *) xr) + *m++;
  709.         if(*m++ == 0)
  710.           break; /* optimize: field will be set to zero at the end of the function */
  711.         m++; /* cb */
  712.       }
  713.     }
  714.     gr_info->maxband[0] = max[0]+1;
  715.     gr_info->maxband[1] = max[1]+1;
  716.     gr_info->maxband[2] = max[2]+1;
  717.     gr_info->maxbandl = max[3]+1;
  718.     {
  719.       int rmax = max[0] > max[1] ? max[0] : max[1];
  720.       rmax = (rmax > max[2] ? rmax : max[2]) + 1;
  721.       gr_info->maxb = rmax ? shortLimit[sfreq][rmax] : longLimit[sfreq][max[3]+1];
  722.     }
  723.   }
  724.   else {
  725.     /*
  726.      * decoding with 'long' BandIndex table (block_type != 2)
  727.      */
  728.     int *pretab = gr_info->preflag ? pretab1 : pretab2;
  729.     int i,max = -1;
  730.     int cb = 0;
  731.     int *m = map[sfreq][2];
  732.     register real v = 0.0;
  733.     int mc = 0;
  734.     /*
  735.      * long hash table values
  736.      */
  737.     for(i=0;i<3;i++) {
  738.       int lp = l[i];
  739.       struct newhuff *h = ht+gr_info->table_select[i];
  740.       for(;lp;lp--,mc--) {
  741.         int x,y;
  742.         if(!mc) {
  743.           mc = *m++;
  744.           cb = *m++;
  745. #ifdef CUT_HF
  746.           if(cb == 21) {
  747.             fprintf(stderr,"c");
  748.             v = 0.0;
  749.           }
  750.           else
  751. #endif
  752.             v = gr_info->pow2gain[((*scf++) + (*pretab++)) << shift];
  753.         }
  754.         {
  755.           register short *val = h->table;
  756.           REFRESH_MASK;
  757.           while((y=*val++)<0) {
  758.             if (mask < 0)
  759.               val -= y;
  760.             num--;
  761.             mask <<= 1;
  762.           }
  763.           x = y >> 4;
  764.           y &= 0xf;
  765.         }
  766.         if (x == 15 && h->linbits) {
  767.           max = cb;
  768.   REFRESH_MASK;
  769.           x += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);
  770.           num -= h->linbits+1;
  771.           mask <<= h->linbits;
  772.           if(mask < 0)
  773.             *xrpnt++ = REAL_MUL(-ispow[x], v);
  774.           else
  775.             *xrpnt++ = REAL_MUL(ispow[x], v);
  776.           mask <<= 1;
  777.         }
  778.         else if(x) {
  779.           max = cb;
  780.           if(mask < 0)
  781.             *xrpnt++ = REAL_MUL(-ispow[x], v);
  782.           else
  783.             *xrpnt++ = REAL_MUL(ispow[x], v);
  784.           num--;
  785.           mask <<= 1;
  786.         }
  787.         else
  788.           *xrpnt++ = 0.0;
  789.         if (y == 15 && h->linbits) {
  790.           max = cb;
  791.   REFRESH_MASK;
  792.           y += ((unsigned long) mask) >> (BITSHIFT+8-h->linbits);
  793.           num -= h->linbits+1;
  794.           mask <<= h->linbits;
  795.           if(mask < 0)
  796.             *xrpnt++ = REAL_MUL(-ispow[y], v);
  797.           else
  798.             *xrpnt++ = REAL_MUL(ispow[y], v);
  799.           mask <<= 1;
  800.         }
  801.         else if(y) {
  802.           max = cb;
  803.           if(mask < 0)
  804.             *xrpnt++ = REAL_MUL(-ispow[y], v);
  805.           else
  806.             *xrpnt++ = REAL_MUL(ispow[y], v);
  807.           num--;
  808.           mask <<= 1;
  809.         }
  810.         else
  811.           *xrpnt++ = 0.0;
  812.       }
  813.     }
  814.     /*
  815.      * short (count1table) values
  816.      */
  817.     for(;l3 && (part2remain+num > 0);l3--) {
  818.       struct newhuff *h = htc+gr_info->count1table_select;
  819.       register short *val = h->table,a;
  820.       REFRESH_MASK;
  821.       while((a=*val++)<0) {
  822.         if (mask < 0)
  823.           val -= a;
  824.         num--;
  825.         mask <<= 1;
  826.       }
  827.       if(part2remain+num <= 0) {
  828. num -= part2remain+num;
  829.         break;
  830.       }
  831.       for(i=0;i<4;i++) {
  832.         if(!(i & 1)) {
  833.           if(!mc) {
  834.             mc = *m++;
  835.             cb = *m++;
  836. #ifdef CUT_HF
  837.             if(cb == 21) { 
  838.               fprintf(stderr,"c");
  839.               v = 0.0;
  840.             }
  841.             else
  842. #endif
  843.               v = gr_info->pow2gain[((*scf++) + (*pretab++)) << shift];
  844.           }
  845.           mc--;
  846.         }
  847.         if ( (a & (0x8>>i)) ) {
  848.           max = cb;
  849.           if(part2remain+num <= 0) {
  850.             break;
  851.           }
  852.           if(mask < 0)
  853.             *xrpnt++ = -v;
  854.           else
  855.             *xrpnt++ = v;
  856.           num--;
  857.           mask <<= 1;
  858.         }
  859.         else
  860.           *xrpnt++ = 0.0;
  861.       }
  862.     }
  863.     gr_info->maxbandl = max+1;
  864.     gr_info->maxb = longLimit[sfreq][gr_info->maxbandl];
  865.   }
  866.   part2remain += num;
  867. //  backbits(num);
  868.   bitindex -= num; wordpointer += (bitindex>>3); bitindex &= 0x7;
  869.   num = 0;
  870.   while(xrpnt < &xr[SBLIMIT][0]) 
  871.     *xrpnt++ = 0.0;
  872.   while( part2remain > 16 ) {
  873.     getbits(16); /* Dismiss stuffing Bits */
  874.     part2remain -= 16;
  875.   }
  876.   if(part2remain > 0)
  877.     getbits(part2remain);
  878.   else if(part2remain < 0) {
  879.       fprintf(stderr,"mpg123: Can't rewind stream by %d bits!n",-part2remain);
  880.     return 1; /* -> error */
  881.   }
  882.   return 0;
  883. }
  884. /* 
  885.  * III_stereo: calculate real channel values for Joint-I-Stereo-mode
  886.  */
  887. static void III_i_stereo(real xr_buf[2][SBLIMIT][SSLIMIT],int *scalefac,
  888.    struct gr_info_s *gr_info,int sfreq,int ms_stereo,int lsf)
  889. {
  890.       real (*xr)[SBLIMIT*SSLIMIT] = (real (*)[SBLIMIT*SSLIMIT] ) xr_buf;
  891.       struct bandInfoStruct *bi = &bandInfo[sfreq];
  892.       const real *tab1,*tab2;
  893.       int tab;
  894.       static const real *tabs[3][2][2] = { 
  895.          { { tan1_1,tan2_1 }     , { tan1_2,tan2_2 } },
  896.          { { pow1_1[0],pow2_1[0] } , { pow1_2[0],pow2_2[0] } } ,
  897.          { { pow1_1[1],pow2_1[1] } , { pow1_2[1],pow2_2[1] } } 
  898.       };
  899.       tab = lsf + (gr_info->scalefac_compress & lsf);
  900.       tab1 = tabs[tab][ms_stereo][0];
  901.       tab2 = tabs[tab][ms_stereo][1];
  902. #if 0
  903.       if(lsf) {
  904.         int p = gr_info->scalefac_compress & 0x1;
  905. if(ms_stereo) {
  906.           tab1 = pow1_2[p]; tab2 = pow2_2[p];
  907.         }
  908.         else {
  909.           tab1 = pow1_1[p]; tab2 = pow2_1[p];
  910.         }
  911.       }
  912.       else {
  913.         if(ms_stereo) {
  914.           tab1 = tan1_2; tab2 = tan2_2;
  915.         }
  916.         else {
  917.           tab1 = tan1_1; tab2 = tan2_1;
  918.         }
  919.       }
  920. #endif
  921. //      printf("III_i_st: tab1=%p tab2=%p tab=%d ms=%d  n", tab1, tab2, tab, ms_stereo);
  922.       if (gr_info->block_type == 2) {
  923.          int lwin,do_l = 0;
  924.          if( gr_info->mixed_block_flag )
  925.            do_l = 1;
  926.          for (lwin=0;lwin<3;lwin++) { /* process each window */
  927.              /* get first band with zero values */
  928.            int is_p,sb,idx,sfb = gr_info->maxband[lwin];  /* sfb is minimal 3 for mixed mode */
  929.            if(sfb > 3)
  930.              do_l = 0;
  931.            for(;sfb<12;sfb++) {
  932.              is_p = scalefac[sfb*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */ 
  933.              if(is_p != 7) {
  934.                real t1,t2;
  935.                sb  = bi->shortDiff[sfb];
  936.                idx = bi->shortIdx[sfb] + lwin;
  937.                t1  = tab1[is_p]; t2 = tab2[is_p];
  938.                for (; sb > 0; sb--,idx+=3) {
  939.                  real v = xr[0][idx];
  940.                  xr[0][idx] = REAL_MUL(v, t1);
  941.                  xr[1][idx] = REAL_MUL(v, t2);
  942.                }
  943.              }
  944.            }
  945. #if 1
  946. /* in the original: copy 10 to 11 , here: copy 11 to 12 
  947. maybe still wrong??? (copy 12 to 13?) */
  948.            is_p = scalefac[11*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */
  949.            sb   = bi->shortDiff[12];
  950.            idx  = bi->shortIdx[12] + lwin;
  951. #else
  952.            is_p = scalefac[10*3+lwin-gr_info->mixed_block_flag]; /* scale: 0-15 */
  953.            sb   = bi->shortDiff[11];
  954.            idx  = bi->shortIdx[11] + lwin;
  955. #endif
  956.            if(is_p != 7) {
  957.              real t1,t2;
  958.              t1 = tab1[is_p]; t2 = tab2[is_p];
  959.              for ( ; sb > 0; sb--,idx+=3 ) {  
  960.                real v = xr[0][idx];
  961.                xr[0][idx] = REAL_MUL(v, t1);
  962.                xr[1][idx] = REAL_MUL(v, t2);
  963.              }
  964.            }
  965.          } /* end for(lwin; .. ; . ) */
  966. /* also check l-part, if ALL bands in the three windows are 'empty'
  967.  * and mode = mixed_mode 
  968.  */
  969.          if (do_l) {
  970.            int sfb = gr_info->maxbandl;
  971.            int idx = bi->longIdx[sfb];
  972.            for ( ; sfb<8; sfb++ ) {
  973.              int sb = bi->longDiff[sfb];
  974.              int is_p = scalefac[sfb]; /* scale: 0-15 */
  975.              if(is_p != 7) {
  976.                real t1,t2;
  977.                t1 = tab1[is_p]; t2 = tab2[is_p];
  978.                for ( ; sb > 0; sb--,idx++) {
  979.                  real v = xr[0][idx];
  980.                  xr[0][idx] = REAL_MUL(v, t1);
  981.                  xr[1][idx] = REAL_MUL(v, t2);
  982.                }
  983.              }
  984.              else 
  985.                idx += sb;
  986.            }
  987.          }     
  988.       } 
  989.       else { /* ((gr_info->block_type != 2)) */
  990.        int sfb = gr_info->maxbandl;
  991.        int is_p,idx = bi->longIdx[sfb];
  992. /* hmm ... maybe the maxbandl stuff for i-stereo is buggy? */
  993.        if(sfb <= 21) { 
  994.         for ( ; sfb<21; sfb++) {
  995.           int sb = bi->longDiff[sfb];
  996.           is_p = scalefac[sfb]; /* scale: 0-15 */
  997.           if(is_p != 7) {
  998.             real t1,t2;
  999.             t1 = tab1[is_p]; t2 = tab2[is_p];
  1000.             for ( ; sb > 0; sb--,idx++) {
  1001.                real v = xr[0][idx];
  1002.                xr[0][idx] = REAL_MUL(v, t1);
  1003.                xr[1][idx] = REAL_MUL(v, t2);
  1004.             }
  1005.           }
  1006.           else
  1007.             idx += sb;
  1008.         }
  1009.         is_p = scalefac[20];
  1010.         if(is_p != 7) {  /* copy l-band 20 to l-band 21 */
  1011.           int sb;
  1012.           real t1 = tab1[is_p],t2 = tab2[is_p]; 
  1013.           for ( sb = bi->longDiff[21]; sb > 0; sb--,idx++ ) {
  1014.             real v = xr[0][idx];
  1015.             xr[0][idx] = REAL_MUL(v, t1);
  1016.             xr[1][idx] = REAL_MUL(v, t2);
  1017.           }
  1018.         }
  1019.        }        /* end: if(sfb <= 21) */
  1020.       } /* ... */
  1021. }
  1022. static void III_antialias(real xr[SBLIMIT][SSLIMIT],struct gr_info_s *gr_info) {
  1023.    int sblim;
  1024.    if(gr_info->block_type == 2) {
  1025.       if(!gr_info->mixed_block_flag) 
  1026.         return;
  1027.       sblim = 1; 
  1028.    }
  1029.    else {
  1030.      sblim = gr_info->maxb-1;
  1031.    }
  1032.    /* 31 alias-reduction operations between each pair of sub-bands */
  1033.    /* with 8 butterflies between each pair                         */
  1034.    {
  1035.      int sb;
  1036.      real *xr1=(real *) xr[1];
  1037.      for(sb=sblim;sb;sb--,xr1+=10) {
  1038.        int ss;
  1039.        real *cs=aa_cs,*ca=aa_ca;
  1040.        real *xr2 = xr1;
  1041.        for(ss=7;ss>=0;ss--) {    /* upper and lower butterfly inputs */
  1042.          register real bu = *--xr2,bd = *xr1;
  1043.          *xr2   = (bu * (*cs)   ) - (bd * (*ca)   );
  1044.          *xr1++ = (bd * (*cs++) ) + (bu * (*ca++) );
  1045.        }
  1046.      }
  1047.      
  1048.   }
  1049. }
  1050. #include "dct64.c"
  1051. #include "dct36.c"
  1052. #include "dct12.c"
  1053. #include "decod386.c"
  1054. /*
  1055.  * III_hybrid
  1056.  */
  1057.  
  1058. static dct36_func_t dct36_func;
  1059.   
  1060. static void III_hybrid(real fsIn[SBLIMIT][SSLIMIT],real tsOut[SSLIMIT][SBLIMIT],
  1061.    int ch,struct gr_info_s *gr_info)
  1062. {
  1063.    real *tspnt = (real *) tsOut;
  1064.    static real block[2][2][SBLIMIT*SSLIMIT] = { { { 0, } } };
  1065.    static int blc[2]={0,0};
  1066.    real *rawout1,*rawout2;
  1067.    int bt;
  1068.    int sb = 0;
  1069.    {
  1070.      int b = blc[ch];
  1071.      rawout1=block[b][ch];
  1072.      b=-b+1;
  1073.      rawout2=block[b][ch];
  1074.      blc[ch] = b;
  1075.    }
  1076.    if(gr_info->mixed_block_flag) {
  1077.      sb = 2;
  1078.      (*dct36_func)(fsIn[0],rawout1,rawout2,win[0],tspnt);
  1079.      (*dct36_func)(fsIn[1],rawout1+18,rawout2+18,win1[0],tspnt+1);
  1080.      rawout1 += 36; rawout2 += 36; tspnt += 2;
  1081.    }
  1082.  
  1083.    bt = gr_info->block_type;
  1084.    if(bt == 2) {
  1085.      for (; sb<gr_info->maxb; sb+=2,tspnt+=2,rawout1+=36,rawout2+=36) {
  1086.        dct12(fsIn[sb],rawout1,rawout2,win[2],tspnt);
  1087.        dct12(fsIn[sb+1],rawout1+18,rawout2+18,win1[2],tspnt+1);
  1088.      }
  1089.    }
  1090.    else {
  1091.      for (; sb<gr_info->maxb; sb+=2,tspnt+=2,rawout1+=36,rawout2+=36) {
  1092.        (*dct36_func)(fsIn[sb],rawout1,rawout2,win[bt],tspnt);
  1093.        (*dct36_func)(fsIn[sb+1],rawout1+18,rawout2+18,win1[bt],tspnt+1);
  1094.      }
  1095.    }
  1096.    for(;sb<SBLIMIT;sb++,tspnt++) {
  1097.      int i;
  1098.      for(i=0;i<SSLIMIT;i++) {
  1099.        tspnt[i*SBLIMIT] = *rawout1++;
  1100.        *rawout2++ = 0.0;
  1101.      }
  1102.    }
  1103. }
  1104. /*
  1105.  * main layer3 handler
  1106.  */
  1107. /* int do_layer3(struct frame *fr,int outmode,struct audio_info_struct *ai) */
  1108. static int do_layer3(struct frame *fr,int single){
  1109.   int gr, ch, ss,clip=0;
  1110.   int scalefacs[2][39]; /* max 39 for short[13][3] mode, mixed: 38, long: 22 */
  1111.   struct III_sideinfo sideinfo;
  1112.   int stereo = fr->stereo;
  1113.   int ms_stereo,i_stereo;
  1114.   int sfreq = fr->sampling_frequency;
  1115.   int stereo1,granules;
  1116. //  if (fr->error_protection) getbits(16); /* skip crc */
  1117.   if(stereo == 1) { /* stream is mono */
  1118.     stereo1 = 1;
  1119.     single = 0;
  1120.   } else
  1121.   if(single >= 0) /* stream is stereo, but force to mono */
  1122.     stereo1 = 1;
  1123.   else
  1124.     stereo1 = 2;
  1125.   if(fr->mode == MPG_MD_JOINT_STEREO) {
  1126.     ms_stereo = (fr->mode_ext & 0x2)>>1;
  1127.     i_stereo  = fr->mode_ext & 0x1;
  1128.   } else
  1129.     ms_stereo = i_stereo = 0;
  1130.   if(!III_get_side_info(&sideinfo,stereo,ms_stereo,sfreq,single,fr->lsf))
  1131.     return -1;
  1132.   
  1133.   set_pointer(sideinfo.main_data_begin);
  1134.   granules = (fr->lsf) ? 1 : 2;
  1135.   for (gr=0;gr<granules;gr++){
  1136.     DECLARE_ALIGNED(16, real, hybridIn[2][SBLIMIT][SSLIMIT]);
  1137.     DECLARE_ALIGNED(16, real, hybridOut[2][SSLIMIT][SBLIMIT]);
  1138.     { struct gr_info_s *gr_info = &(sideinfo.ch[0].gr[gr]);
  1139.       int part2bits;
  1140.       if(fr->lsf)
  1141.         part2bits = III_get_scale_factors_2(scalefacs[0],gr_info,0);
  1142.       else
  1143.         part2bits = III_get_scale_factors_1(scalefacs[0],gr_info);
  1144.       if(III_dequantize_sample(hybridIn[0], scalefacs[0],gr_info,sfreq,part2bits))
  1145.         return clip;
  1146.     }
  1147.     if(stereo == 2) {
  1148.       struct gr_info_s *gr_info = &(sideinfo.ch[1].gr[gr]);
  1149.       
  1150.       int part2bits;
  1151.       if(fr->lsf) 
  1152.         part2bits = III_get_scale_factors_2(scalefacs[1],gr_info,i_stereo);
  1153.       else
  1154.         part2bits = III_get_scale_factors_1(scalefacs[1],gr_info);
  1155.       if(III_dequantize_sample(hybridIn[1],scalefacs[1],gr_info,sfreq,part2bits))
  1156.           return clip;
  1157.       if(ms_stereo) {
  1158.         int i;
  1159.         int maxb = sideinfo.ch[0].gr[gr].maxb;
  1160.         if(sideinfo.ch[1].gr[gr].maxb > maxb)
  1161.             maxb = sideinfo.ch[1].gr[gr].maxb;
  1162.         for(i=0;i<SSLIMIT*maxb;i++) {
  1163.           real tmp0 = ((real *)hybridIn[0])[i];
  1164.           real tmp1 = ((real *)hybridIn[1])[i];
  1165.           ((real *)hybridIn[0])[i] = tmp0 + tmp1;
  1166.           ((real *)hybridIn[1])[i] = tmp0 - tmp1;
  1167.         }
  1168.       }
  1169.       if(i_stereo)
  1170.         III_i_stereo(hybridIn,scalefacs[1],gr_info,sfreq,ms_stereo,fr->lsf);
  1171.       if(ms_stereo || i_stereo || (single == 3) ) {
  1172.         if(gr_info->maxb > sideinfo.ch[0].gr[gr].maxb) 
  1173.           sideinfo.ch[0].gr[gr].maxb = gr_info->maxb;
  1174.         else
  1175.           gr_info->maxb = sideinfo.ch[0].gr[gr].maxb;
  1176.       }
  1177.       switch(single) {
  1178.         case 3: {
  1179.           register int i;
  1180.           register real *in0 = (real *) hybridIn[0],*in1 = (real *) hybridIn[1];
  1181.           for(i=0;i<SSLIMIT*gr_info->maxb;i++,in0++)
  1182.             *in0 = (*in0 + *in1++); /* *0.5 done by pow-scale */ 
  1183.           break; }
  1184.         case 1: {
  1185.           register int i;
  1186.           register real *in0 = (real *) hybridIn[0],*in1 = (real *) hybridIn[1];
  1187.           for(i=0;i<SSLIMIT*gr_info->maxb;i++)
  1188.             *in0++ = *in1++;
  1189.           break; }
  1190.       }
  1191.     }  // if(stereo == 2)
  1192.     for(ch=0;ch<stereo1;ch++) {
  1193.       struct gr_info_s *gr_info = &(sideinfo.ch[ch].gr[gr]);
  1194.   III_antialias(hybridIn[ch],gr_info);
  1195.   III_hybrid(hybridIn[ch], hybridOut[ch], ch,gr_info);
  1196.     }
  1197.     for(ss=0;ss<SSLIMIT;ss++) {
  1198.       if(single >= 0) {
  1199.     clip += (fr->synth_mono)(hybridOut[0][ss],pcm_sample,&pcm_point);
  1200.    } else {
  1201.      int p1 = pcm_point;
  1202.     clip += (fr->synth)(hybridOut[0][ss],0,pcm_sample,&p1);
  1203.     clip += (fr->synth)(hybridOut[1][ss],1,pcm_sample,&pcm_point);
  1204.       }
  1205.     }
  1206.     
  1207.   }
  1208.   return clip;
  1209. }