TONAL.C
上传用户:dshsh2009
上传日期:2007-01-07
资源大小:155k
文件大小:37k
源码类别:

mpeg/mp3

开发平台:

Unix_Linux

  1. /**********************************************************************
  2. Copyright (c) 1991 MPEG/audio software simulation group, All Rights Reserved
  3. tonal.c
  4. **********************************************************************/
  5. /**********************************************************************
  6.  * MPEG/audio coding/decoding software, work in progress              *
  7.  *   NOT for public distribution until verified and approved by the   *
  8.  *   MPEG/audio committee.  For further information, please contact   *
  9.  *   Davis Pan, 508-493-2241, e-mail: pan@3d.enet.dec.com             *
  10.  *                                                                    *
  11.  * VERSION 3.9t                                                       *
  12.  *   changes made since last update:                                  *
  13.  *   date   programmers         comment                               *
  14.  * 2/25/91  Douglas Wong        start of version 1.1 records          *
  15.  * 3/06/91  Douglas Wong        rename: setup.h to endef.h            *
  16.  *                              updated I_psycho_one and II_psycho_one*
  17.  * 3/11/91  W. J. Carter        Added Douglas Wong's updates dated    *
  18.  *                              3/9/91 for I_Psycho_One() and for     *
  19.  *                              II_Psycho_One().                      *
  20.  * 5/10/91  W. Joseph Carter    Ported to Macintosh and Unix.         *
  21.  *                              Located and fixed numerous software   *
  22.  *                              bugs and table data errors.           *
  23.  * 6/11/91  Davis Pan           corrected several bugs                *
  24.  *                              based on comments from H. Fuchs       *
  25.  * 01jul91  dpwe (Aware Inc.)   Made pow() args float                 *
  26.  *                              Removed logical bug in I_tonal_label: *
  27.  *                              Sometimes *tone returned == STOP      *
  28.  * 7/10/91  Earle Jennings      no change necessary in port to MsDos  *
  29.  * 11sep91  dpwe@aware.com      Subtracted 90.3dB from II_f_f_t peaks *
  30.  * 10/1/91  Peter W. Farrett    Updated II_Psycho_One(),I_Psycho_One()*
  31.  *                              to include comments.                  *
  32.  *11/29/91  Masahiro Iwadare    Bug fix regarding POWERNORM           *
  33.  *                              fixed several other miscellaneous bugs*
  34.  * 2/11/92  W. Joseph Carter    Ported new code to Macintosh.  Most   *
  35.  *                              important fixes involved changing     *
  36.  *                              16-bit ints to long or unsigned in    *
  37.  *                              bit alloc routines for quant of 65535 *
  38.  *                              and passing proper function args.     *
  39.  *                              Removed "Other Joint Stereo" option   *
  40.  *                              and made bitrate be total channel     *
  41.  *                              bitrate, irrespective of the mode.    *
  42.  *                              Fixed many small bugs & reorganized.  *
  43.  * 2/12/92  Masahiro Iwadare    Fixed some potential bugs in          *
  44.  *          Davis Pan           subsampling()                         *
  45.  * 2/25/92  Masahiro Iwadare    Fixed some more potential bugs        *
  46.  * 6/24/92  Tan Ah Peng         Modified window for FFT               * 
  47.  *                              (denominator N-1 to N)                *
  48.  *                              Updated all critical band rate &      *
  49.  *                              absolute threshold tables and critical*
  50.  *                              boundaries for use with Layer I & II  *  
  51.  *                              Corrected boundary limits for tonal   *
  52.  *                              component computation                 *
  53.  *                              Placement of non-tonal component at   *
  54.  *                              geometric mean of critical band       *
  55.  *                              (previous placement method commented  *
  56.  *                               out - can be used if desired)        *
  57.  * 3/01/93  Mike Li             Infinite looping fix in noise_label() *
  58.  * 3/19/93  Jens Spille         fixed integer overflow problem in     *
  59.  *                              psychoacoutic model 1                 *
  60.  * 3/19/93  Giorgio Dimino      modifications to better account for   *
  61.  *                              tonal and non-tonal components        *
  62.  * 5/28/93 Sriram Jayasimha     "London" mod. to psychoacoustic model1*
  63.  * 8/05/93 Masahiro Iwadare     noise_label modification "option"     *
  64.  **********************************************************************/
  65. #include "common.h"
  66. #include "encoder.h"
  67. #define LONDON                  /* enable "LONDON" modification */
  68. #define MAKE_SENSE              /* enable "MAKE_SENSE" modification */
  69. #define MI_OPTION               /* enable "MI_OPTION" modification */
  70. /**********************************************************************/
  71. /*
  72. /*        This module implements the psychoacoustic model I for the
  73. /* MPEG encoder layer II. It uses simplified tonal and noise masking
  74. /* threshold analysis to generate SMR for the encoder bit allocation
  75. /* routine.
  76. /*
  77. /**********************************************************************/
  78. int crit_band;
  79. int FAR *cbound;
  80. int sub_size;
  81. void read_cbound(lay,freq)  /* this function reads in critical */
  82. int lay, freq;              /* band boundaries                 */
  83. {
  84.  int i,j,k;
  85.  FILE *fp;
  86.  char r[16], t[80];
  87.  strcpy(r, "2cb1");
  88.  r[0] = (char) lay + '0';
  89.  r[3] = (char) freq + '0';
  90.  if( !(fp = OpenTableFile(r)) ){       /* check boundary values */
  91.     printf("Please check %s boundary tablen",r);
  92.     exit(1);
  93.  }
  94.  fgets(t,80,fp);               /* read input for critical bands */
  95.  sscanf(t,"%dn",&crit_band);
  96.  cbound = (int FAR *) mem_alloc(sizeof(int) * crit_band, "cbound");
  97.  for(i=0;i<crit_band;i++){   /* continue to read input for */
  98.     fgets(t,80,fp);            /* critical band boundaries   */
  99.     sscanf(t,"%d %dn",&j, &k);
  100.     if(i==j) cbound[j] = k;
  101.     else {                     /* error */
  102.        printf("Please check index %d in cbound table %sn",i,r);
  103.        exit(1);
  104.     }
  105.  }
  106.  fclose(fp);
  107. }        
  108. void read_freq_band(ltg,lay,freq)  /* this function reads in   */
  109. int lay, freq;                     /* frequency bands and bark */
  110. g_ptr FAR *ltg;                /* values                   */
  111. {
  112.  int i,j, k;
  113.  double b,c;
  114.  FILE *fp;
  115.  char r[16], t[80];
  116.  strcpy(r, "2th1");
  117.  r[0] = (char) lay + '0';
  118.  r[3] = (char) freq + '0';
  119.  if( !(fp = OpenTableFile(r)) ){   /* check freq. values  */
  120.     printf("Please check frequency and cband table %sn",r);
  121.     exit(1);
  122.  }
  123.  fgets(t,80,fp);              /* read input for freq. subbands */
  124.  sscanf(t,"%dn",&sub_size);
  125.  *ltg = (g_ptr FAR ) mem_alloc(sizeof(g_thres) * sub_size, "ltg");
  126.  (*ltg)[0].line = 0;          /* initialize global masking threshold */
  127.  (*ltg)[0].bark = 0;
  128.  (*ltg)[0].hear = 0;
  129.  for(i=1;i<sub_size;i++){    /* continue to read freq. subband */
  130.     fgets(t,80,fp);          /* and assign                     */
  131.     sscanf(t,"%d %d %lf %lfn",&j, &k, &b, &c);
  132.     if(i == j){
  133.        (*ltg)[j].line = k;
  134.        (*ltg)[j].bark = b;
  135.        (*ltg)[j].hear = c;
  136.     }
  137.     else {                   /* error */
  138.        printf("Please check index %d in freq-cb table %sn",i,r);
  139.        exit(1);
  140.     }
  141.  }
  142.  fclose(fp);
  143. }
  144. void make_map(power, ltg)       /* this function calculates the */
  145. mask FAR power[HAN_SIZE];   /* global masking threshold     */
  146. g_thres FAR *ltg;
  147. {
  148.  int i,j;
  149.  for(i=1;i<sub_size;i++) for(j=ltg[i-1].line;j<=ltg[i].line;j++)
  150.     power[j].map = i;
  151. }
  152. double add_db(a,b)
  153. double a,b;
  154. {
  155.  a = pow(10.0,a/10.0);
  156.  b = pow(10.0,b/10.0);
  157.  return 10 * log10(a+b);
  158. }
  159. /****************************************************************/
  160. /*
  161. /*        Fast Fourier transform of the input samples.
  162. /*
  163. /****************************************************************/
  164. void II_f_f_t(sample, power)      /* this function calculates an */
  165. double FAR sample[FFT_SIZE];  /* FFT analysis for the freq.  */
  166. mask FAR power[HAN_SIZE];     /* domain                      */
  167. {
  168.  int i,j,k,L,l=0;
  169.  int ip, le, le1;
  170.  double t_r, t_i, u_r, u_i;
  171.  static int M, MM1, init = 0, N;
  172.  double *x_r, *x_i, *energy;
  173.  static int *rev;
  174.  static double *w_r, *w_i;
  175.  x_r = (double *) mem_alloc(sizeof(DFFT), "x_r");
  176.  x_i = (double *) mem_alloc(sizeof(DFFT), "x_i");
  177.  energy = (double *) mem_alloc(sizeof(DFFT), "energy");
  178.  for(i=0;i<FFT_SIZE;i++) x_r[i] = x_i[i] = energy[i] = 0;
  179.  if(!init){
  180.     rev = (int *) mem_alloc(sizeof(IFFT), "rev");
  181.     w_r = (double *) mem_alloc(sizeof(D10), "w_r");
  182.     w_i = (double *) mem_alloc(sizeof(D10), "w_i");
  183.     M = 10;
  184.     MM1 = 9;
  185.     N = FFT_SIZE;
  186.     for(L=0;L<M;L++){
  187.        le = 1 << (M-L);
  188.        le1 = le >> 1;
  189.        w_r[L] = cos(PI/le1);
  190.        w_i[L] = -sin(PI/le1);
  191.     }
  192.     for(i=0;i<FFT_SIZE;rev[i] = l,i++) for(j=0,l=0;j<10;j++){
  193.        k=(i>>j) & 1;
  194.        l |= (k<<9-j);                
  195.     }
  196.     init = 1;
  197.  }
  198.  memcpy( (char *) x_r, (char *) sample, sizeof(double) * FFT_SIZE);
  199.  for(L=0;L<MM1;L++){
  200.     le = 1 << (M-L);
  201.     le1 = le >> 1;
  202.     u_r = 1;
  203.     u_i = 0;
  204.     for(j=0;j<le1;j++){
  205.        for(i=j;i<N;i+=le){
  206.           ip = i + le1;
  207.           t_r = x_r[i] + x_r[ip];
  208.           t_i = x_i[i] + x_i[ip];
  209.           x_r[ip] = x_r[i] - x_r[ip];
  210.           x_i[ip] = x_i[i] - x_i[ip];
  211.           x_r[i] = t_r;
  212.           x_i[i] = t_i;
  213.           t_r = x_r[ip];
  214.           x_r[ip] = x_r[ip] * u_r - x_i[ip] * u_i;
  215.           x_i[ip] = x_i[ip] * u_r + t_r * u_i;
  216.        }
  217.        t_r = u_r;
  218.        u_r = u_r * w_r[L] - u_i * w_i[L];
  219.        u_i = u_i * w_r[L] + t_r * w_i[L];
  220.     }
  221.  }
  222.  for(i=0;i<N;i+=2){
  223.     ip = i + 1;
  224.     t_r = x_r[i] + x_r[ip];
  225.     t_i = x_i[i] + x_i[ip];
  226.     x_r[ip] = x_r[i] - x_r[ip];
  227.     x_i[ip] = x_i[i] - x_i[ip];
  228.     x_r[i] = t_r;
  229.     x_i[i] = t_i;
  230.     energy[i] = x_r[i] * x_r[i] + x_i[i] * x_i[i];
  231.  }
  232.  for(i=0;i<FFT_SIZE;i++) if(i<rev[i]){
  233.     t_r = energy[i];
  234.     energy[i] = energy[rev[i]];
  235.     energy[rev[i]] = t_r;
  236.  }
  237.  for(i=0;i<HAN_SIZE;i++){    /* calculate power density spectrum */
  238.     if (energy[i] < 1E-20) energy[i] = 1E-20;
  239.     power[i].x = 10 * log10(energy[i]) + POWERNORM;
  240.     power[i].next = STOP;
  241.     power[i].type = FALSE;
  242.  }
  243.  mem_free((void **) &x_r);
  244.  mem_free((void **) &x_i);
  245.  mem_free((void **) &energy);
  246. }
  247. /****************************************************************/
  248. /*
  249. /*         Window the incoming audio signal.
  250. /*
  251. /****************************************************************/
  252. void II_hann_win(sample)          /* this function calculates a  */
  253. double FAR sample[FFT_SIZE];  /* Hann window for PCM (input) */
  254. {                                 /* samples for a 1024-pt. FFT  */
  255.  register int i;
  256.  register double sqrt_8_over_3;
  257.  static int init = 0;
  258.  static double FAR *window;
  259.  if(!init){  /* calculate window function for the Fourier transform */
  260.     window = (double FAR *) mem_alloc(sizeof(DFFT), "window");
  261.     sqrt_8_over_3 = pow(8.0/3.0, 0.5);
  262.     for(i=0;i<FFT_SIZE;i++){
  263.        /* Hann window formula */
  264.        window[i]=sqrt_8_over_3*0.5*(1-cos(2.0*PI*i/(FFT_SIZE)))/FFT_SIZE;
  265.     }
  266.     init = 1;
  267.  }
  268.  for(i=0;i<FFT_SIZE;i++) sample[i] *= window[i];
  269. }
  270. /*******************************************************************/
  271. /*
  272. /*        This function finds the maximum spectral component in each
  273. /* subband and return them to the encoder for time-domain threshold
  274. /* determination.
  275. /*
  276. /*******************************************************************/
  277. #ifndef LONDON
  278. void II_pick_max(power, spike)
  279. double FAR spike[SBLIMIT];
  280. mask FAR power[HAN_SIZE];
  281. {
  282.  double max;
  283.  int i,j;
  284.  for(i=0;i<HAN_SIZE;spike[i>>4] = max, i+=16)      /* calculate the      */
  285.  for(j=0, max = DBMIN;j<16;j++)                    /* maximum spectral   */
  286.     max = (max>power[i+j].x) ? max : power[i+j].x; /* component in each  */
  287. }                                                  /* subband from bound */
  288.                                                    /* 4-16               */
  289. #else
  290. void II_pick_max(power, spike)
  291. double FAR spike[SBLIMIT];
  292. mask FAR power[HAN_SIZE];
  293. {
  294.  double sum;
  295.  int i,j;
  296.  for(i=0;i<HAN_SIZE;spike[i>>4] = 10.0*log10(sum), i+=16)
  297.                                                    /* calculate the      */
  298.  for(j=0, sum = pow(10.0,0.1*DBMIN);j<16;j++)      /* sum of spectral   */
  299.    sum += pow(10.0,0.1*power[i+j].x);              /* component in each  */
  300. }                                                  /* subband from bound */
  301.                                                    /* 4-16               */
  302. #endif
  303. /****************************************************************/
  304. /*
  305. /*        This function labels the tonal component in the power
  306. /* spectrum.
  307. /*
  308. /****************************************************************/
  309. void II_tonal_label(power, tone)  /* this function extracts (tonal) */
  310. mask FAR power[HAN_SIZE];     /* sinusoidals from the spectrum  */
  311. int *tone;
  312. {
  313.  int i,j, last = LAST, first, run, last_but_one = LAST; /* dpwe */
  314.  double max;
  315.  *tone = LAST;
  316.  for(i=2;i<HAN_SIZE-12;i++){
  317.     if(power[i].x>power[i-1].x && power[i].x>=power[i+1].x){
  318.        power[i].type = TONE;
  319.        power[i].next = LAST;
  320.        if(last != LAST) power[last].next = i;
  321.        else first = *tone = i;
  322.        last = i;
  323.     }
  324.  }
  325.  last = LAST;
  326.  first = *tone;
  327.  *tone = LAST;
  328.  while(first != LAST){               /* the conditions for the tonal          */
  329.     if(first<3 || first>500) run = 0;/* otherwise k+/-j will be out of bounds */
  330.     else if(first<63) run = 2;       /* components in layer II, which         */
  331.     else if(first<127) run = 3;      /* are the boundaries for calc.          */
  332.     else if(first<255) run = 6;      /* the tonal components                  */
  333.     else run = 12;
  334.     max = power[first].x - 7;        /* after calculation of tonal   */
  335.     for(j=2;j<=run;j++)              /* components, set to local max */
  336.        if(max < power[first-j].x || max < power[first+j].x){
  337.           power[first].type = FALSE;
  338.           break;
  339.        }
  340.     if(power[first].type == TONE){   /* extract tonal components */
  341.        int help=first;
  342.        if(*tone==LAST) *tone = first;
  343.        while((power[help].next!=LAST)&&(power[help].next-first)<=run)
  344.           help=power[help].next;
  345.        help=power[help].next;
  346.        power[first].next=help;
  347.        if((first-last)<=run){
  348.           if(last_but_one != LAST) power[last_but_one].next=first;
  349.        }
  350.        if(first>1 && first<500){     /* calculate the sum of the */
  351.           double tmp;                /* powers of the components */
  352.           tmp = add_db(power[first-1].x, power[first+1].x);
  353.           power[first].x = add_db(power[first].x, tmp);
  354.        }
  355.        for(j=1;j<=run;j++){
  356.           power[first-j].x = power[first+j].x = DBMIN;
  357.           power[first-j].next = power[first+j].next = STOP;
  358.           power[first-j].type = power[first+j].type = FALSE;
  359.        }
  360.        last_but_one=last;
  361.        last = first;
  362.        first = power[first].next;
  363.     }
  364.     else {
  365.        int ll;
  366.        if(last == LAST); /* *tone = power[first].next; dpwe */
  367.        else power[last].next = power[first].next;
  368.        ll = first;
  369.        first = power[first].next;
  370.        power[ll].next = STOP;
  371.     }
  372.  }
  373. }
  374. /****************************************************************/
  375. /*
  376. /*        This function groups all the remaining non-tonal
  377. /* spectral lines into critical band where they are replaced by
  378. /* one single line.
  379. /*
  380. /****************************************************************/
  381.         
  382. void noise_label(power, noise, ltg)
  383. g_thres FAR *ltg;
  384. mask FAR *power;
  385. int *noise;
  386. {
  387.  int i,j, centre, last = LAST;
  388.  double index, weight, sum;
  389.                               /* calculate the remaining spectral */
  390.  for(i=0;i<crit_band-1;i++){  /* lines for non-tonal components   */
  391.      for(j=cbound[i],weight = 0.0,sum = DBMIN;j<cbound[i+1];j++){
  392.         if(power[j].type != TONE){
  393.            if(power[j].x != DBMIN){
  394.               sum = add_db(power[j].x,sum);
  395. /* the line below and others under the "MAKE_SENSE" condition are an alternate
  396.    interpretation of "geometric mean". This approach may make more sense but
  397.    it has not been tested with hardware. */
  398. #ifdef MAKE_SENSE
  399.               weight += pow(10.0, power[j].x/10.0) * (ltg[power[j].map].bark-i);
  400. #endif
  401.               power[j].x = DBMIN;
  402.            }
  403.         }   /*  check to see if the spectral line is low dB, and if  */
  404.      }      /* so replace the center of the critical band, which is */
  405.             /* the center freq. of the noise component              */
  406. #ifdef MAKE_SENSE
  407.      if(sum <= DBMIN)  centre = (cbound[i+1]+cbound[i]) /2;
  408.      else {
  409.         index = weight/pow(10.0,sum/10.0);
  410.         centre = cbound[i] + (int) (index * (double) (cbound[i+1]-cbound[i]) );
  411.      } 
  412. #else
  413.      index = (double)( ((double)cbound[i]) * ((double)(cbound[i+1]-1)) );
  414.      centre = (int)(pow(index,0.5)+0.5);
  415. #endif
  416.     /* locate next non-tonal component until finished; */
  417.     /* add to list of non-tonal components             */
  418. #ifdef MI_OPTION
  419.      /* Masahiro Iwadare's fix for infinite looping problem? */
  420.      if(power[centre].type == TONE) 
  421.        if (power[centre+1].type == TONE) centre++; else centre--;
  422. #else
  423.      /* Mike Li's fix for infinite looping problem */
  424.      if(power[centre].type == FALSE) centre++;
  425.      if(power[centre].type == NOISE){
  426.        if(power[centre].x >= ltg[power[i].map].hear){
  427.          if(sum >= ltg[power[i].map].hear) sum = add_db(power[j].x,sum);
  428.          else
  429.          sum = power[centre].x;
  430.        }
  431.      }
  432. #endif
  433.      if(last == LAST) *noise = centre;
  434.      else {
  435.         power[centre].next = LAST;
  436.         power[last].next = centre;
  437.      }
  438.      power[centre].x = sum;
  439.      power[centre].type = NOISE;        
  440.      last = centre;
  441.  }        
  442. }
  443. /****************************************************************/
  444. /*
  445. /*        This function reduces the number of noise and tonal
  446. /* component for further threshold analysis.
  447. /*
  448. /****************************************************************/
  449. void subsampling(power, ltg, tone, noise)
  450. mask FAR power[HAN_SIZE];
  451. g_thres FAR *ltg;
  452. int *tone, *noise;
  453. {
  454.  int i, old;
  455.  i = *tone; old = STOP;    /* calculate tonal components for */
  456.  while(i!=LAST){           /* reduction of spectral lines    */
  457.     if(power[i].x < ltg[power[i].map].hear){
  458.        power[i].type = FALSE;
  459.        power[i].x = DBMIN;
  460.        if(old == STOP) *tone = power[i].next;
  461.        else power[old].next = power[i].next;
  462.     }
  463.     else old = i;
  464.     i = power[i].next;
  465.  }
  466.  i = *noise; old = STOP;    /* calculate non-tonal components for */
  467.  while(i!=LAST){            /* reduction of spectral lines        */
  468.     if(power[i].x < ltg[power[i].map].hear){
  469.        power[i].type = FALSE;
  470.        power[i].x = DBMIN;
  471.        if(old == STOP) *noise = power[i].next;
  472.        else power[old].next = power[i].next;
  473.     }
  474.     else old = i;
  475.     i = power[i].next;
  476.  }
  477.  i = *tone; old = STOP;
  478.  while(i != LAST){                              /* if more than one */
  479.     if(power[i].next == LAST)break;             /* tonal component  */
  480.     if(ltg[power[power[i].next].map].bark -     /* is less than .5  */
  481.        ltg[power[i].map].bark < 0.5) {          /* bark, take the   */
  482.        if(power[power[i].next].x > power[i].x ){/* maximum          */
  483.           if(old == STOP) *tone = power[i].next;
  484.           else power[old].next = power[i].next;
  485.           power[i].type = FALSE;
  486.           power[i].x = DBMIN;
  487.           i = power[i].next;
  488.        }
  489.        else {
  490.           power[power[i].next].type = FALSE;
  491.           power[power[i].next].x = DBMIN;
  492.           power[i].next = power[power[i].next].next;
  493.           old = i;
  494.        }
  495.     }
  496.     else {
  497.       old = i;
  498.       i = power[i].next;
  499.     }
  500.  }
  501. }
  502. /****************************************************************/
  503. /*
  504. /*        This function calculates the individual threshold and
  505. /* sum with the quiet threshold to find the global threshold.
  506. /*
  507. /****************************************************************/
  508. void threshold(power, ltg, tone, noise, bit_rate)
  509. mask FAR power[HAN_SIZE];
  510. g_thres FAR *ltg;
  511. int *tone, *noise, bit_rate;
  512. {
  513.  int k, t;
  514.  double dz, tmps, vf;
  515.  for(k=1;k<sub_size;k++){
  516.     ltg[k].x = DBMIN;
  517.     t = *tone;          /* calculate individual masking threshold for */
  518.     while(t != LAST){   /* components in order to find the global     */
  519.        if(ltg[k].bark-ltg[power[t].map].bark >= -3.0 && /*threshold (LTG)*/
  520.           ltg[k].bark-ltg[power[t].map].bark <8.0){
  521.           dz = ltg[k].bark-ltg[power[t].map].bark; /* distance of bark value*/
  522.           tmps = -1.525-0.275*ltg[power[t].map].bark - 4.5 + power[t].x;
  523.              /* masking function for lower & upper slopes */
  524.           if(-3<=dz && dz<-1) vf = 17*(dz+1)-(0.4*power[t].x +6);
  525.           else if(-1<=dz && dz<0) vf = (0.4 *power[t].x + 6) * dz;
  526.           else if(0<=dz && dz<1) vf = (-17*dz);
  527.           else if(1<=dz && dz<8) vf = -(dz-1) * (17-0.15 *power[t].x) - 17;
  528.           tmps += vf;        
  529.           ltg[k].x = add_db(ltg[k].x, tmps);
  530.        }
  531.        t = power[t].next;
  532.     }
  533.     t = *noise;        /* calculate individual masking threshold  */
  534.     while(t != LAST){  /* for non-tonal components to find LTG    */
  535.        if(ltg[k].bark-ltg[power[t].map].bark >= -3.0 &&
  536.           ltg[k].bark-ltg[power[t].map].bark <8.0){
  537.           dz = ltg[k].bark-ltg[power[t].map].bark; /* distance of bark value */
  538.           tmps = -1.525-0.175*ltg[power[t].map].bark -0.5 + power[t].x;
  539.              /* masking function for lower & upper slopes */
  540.           if(-3<=dz && dz<-1) vf = 17*(dz+1)-(0.4*power[t].x +6);
  541.           else if(-1<=dz && dz<0) vf = (0.4 *power[t].x + 6) * dz;
  542.           else if(0<=dz && dz<1) vf = (-17*dz);
  543.           else if(1<=dz && dz<8) vf = -(dz-1) * (17-0.15 *power[t].x) - 17;
  544.           tmps += vf;
  545.           ltg[k].x = add_db(ltg[k].x, tmps);
  546.        }
  547.        t = power[t].next;
  548.     }
  549.     if(bit_rate<96)ltg[k].x = add_db(ltg[k].hear, ltg[k].x);
  550.     else ltg[k].x = add_db(ltg[k].hear-12.0, ltg[k].x);
  551.  }
  552. }
  553. /****************************************************************/
  554. /*
  555. /*        This function finds the minimum masking threshold and
  556. /* return the value to the encoder.
  557. /*
  558. /****************************************************************/
  559. void II_minimum_mask(ltg,ltmin,sblimit)
  560. g_thres FAR *ltg;
  561. double FAR ltmin[SBLIMIT];
  562. int sblimit;
  563. {
  564.  double min;
  565.  int i,j;
  566.  j=1;
  567.  for(i=0;i<sblimit;i++)
  568.     if(j>=sub_size-1)                   /* check subband limit, and       */
  569.        ltmin[i] = ltg[sub_size-1].hear; /* calculate the minimum masking  */
  570.     else {                              /* level of LTMIN for each subband*/
  571.        min = ltg[j].x;
  572.        while(ltg[j].line>>4 == i && j < sub_size){
  573.        if(min>ltg[j].x)  min = ltg[j].x;
  574.        j++;
  575.     }
  576.     ltmin[i] = min;
  577.  }
  578. }
  579. /*****************************************************************/
  580. /*
  581. /*        This procedure is called in musicin to pick out the
  582. /* smaller of the scalefactor or threshold.
  583. /*
  584. /*****************************************************************/
  585. void II_smr(ltmin, spike, scale, sblimit)
  586. double FAR spike[SBLIMIT], scale[SBLIMIT], ltmin[SBLIMIT];
  587. int sblimit;
  588. {
  589.  int i;
  590.  double max;
  591.                 
  592.  for(i=0;i<sblimit;i++){                     /* determine the signal   */
  593.     max = 20 * log10(scale[i] * 32768) - 10; /* level for each subband */
  594.     if(spike[i]>max) max = spike[i];         /* for the maximum scale  */
  595.     max -= ltmin[i];                         /* factors                */
  596.     ltmin[i] = max;
  597.  }
  598. }
  599.         
  600. /****************************************************************/
  601. /*
  602. /*        This procedure calls all the necessary functions to
  603. /* complete the psychoacoustic analysis.
  604. /*
  605. /****************************************************************/
  606. void II_Psycho_One(buffer, scale, ltmin, fr_ps)
  607. short FAR buffer[2][1152];
  608. double FAR scale[2][SBLIMIT], ltmin[2][SBLIMIT];
  609. frame_params *fr_ps;
  610. {
  611.  layer *info = fr_ps->header;
  612.  int   stereo = fr_ps->stereo;
  613.  int   sblimit = fr_ps->sblimit;
  614.  int k,i, tone=0, noise=0;
  615.  static char init = 0;
  616.  static int off[2] = {256,256};
  617.  double *sample;
  618.  DSBL *spike;
  619.  static D1408 *fft_buf;
  620.  static mask_ptr FAR power;
  621.  static g_ptr FAR ltg;
  622.  sample = (double *) mem_alloc(sizeof(DFFT), "sample");
  623.  spike = (DSBL *) mem_alloc(sizeof(D2SBL), "spike");
  624.      /* call functions for critical boundaries, freq. */
  625.  if(!init){  /* bands, bark values, and mapping */
  626.     fft_buf = (D1408 *) mem_alloc((long) sizeof(D1408) * 2, "fft_buf");
  627.     power = (mask_ptr FAR ) mem_alloc(sizeof(mask) * HAN_SIZE, "power");
  628.     read_cbound(info->lay,info->sampling_frequency);
  629.     read_freq_band(&ltg,info->lay,info->sampling_frequency);
  630.     make_map(power,ltg);
  631.     for (i=0;i<1408;i++) fft_buf[0][i] = fft_buf[1][i] = 0;
  632.     init = 1;
  633.  }
  634.  for(k=0;k<stereo;k++){  /* check pcm input for 3 blocks of 384 samples */
  635.     for(i=0;i<1152;i++) fft_buf[k][(i+off[k])%1408]= (double)buffer[k][i]/SCALE;
  636.     for(i=0;i<FFT_SIZE;i++) sample[i] = fft_buf[k][(i+1216+off[k])%1408];
  637.     off[k] += 1152;
  638.     off[k] %= 1408;
  639.                             /* call functions for windowing PCM samples,*/
  640.     II_hann_win(sample);    /* location of spectral components in each  */
  641.     for(i=0;i<HAN_SIZE;i++) power[i].x = DBMIN;  /*subband with labeling*/
  642.     II_f_f_t(sample, power);                     /*locate remaining non-*/
  643.     II_pick_max(power, &spike[k][0]);            /*tonal sinusoidals,   */
  644.     II_tonal_label(power, &tone);                /*reduce noise & tonal */
  645.     noise_label(power, &noise, ltg);             /*components, find     */
  646.     subsampling(power, ltg, &tone, &noise);      /*global & minimal     */
  647.     threshold(power, ltg, &tone, &noise,         /*threshold, and sgnl- */
  648.       bitrate[info->lay-1][info->bitrate_index]/stereo); /*to-mask ratio*/
  649.     II_minimum_mask(ltg, &ltmin[k][0], sblimit);
  650.     II_smr(&ltmin[k][0], &spike[k][0], &scale[k][0], sblimit);        
  651.  }
  652.  mem_free((void **) &sample);
  653.  mem_free((void **) &spike);
  654. }
  655. /**********************************************************************/
  656. /*
  657. /*        This module implements the psychoacoustic model I for the
  658. /* MPEG encoder layer I. It uses simplified tonal and noise masking
  659. /* threshold analysis to generate SMR for the encoder bit allocation
  660. /* routine.
  661. /*
  662. /**********************************************************************/
  663. /****************************************************************/
  664. /*
  665. /*        Fast Fourier transform of the input samples.
  666. /*
  667. /****************************************************************/
  668. void I_f_f_t(sample, power)         /* this function calculates */
  669. double FAR sample[FFT_SIZE/2];  /* an FFT analysis for the  */
  670. mask FAR power[HAN_SIZE/2];     /* freq. domain             */
  671. {
  672.  int i,j,k,L,l=0;
  673.  int ip, le, le1;
  674.  double t_r, t_i, u_r, u_i;
  675.  static int M, MM1, init = 0, N;
  676.  double *x_r, *x_i, *energy;
  677.  static int *rev;
  678.  static double *w_r, *w_i;
  679.  x_r = (double *) mem_alloc(sizeof(DFFT2), "x_r");
  680.  x_i = (double *) mem_alloc(sizeof(DFFT2), "x_i");
  681.  energy = (double *) mem_alloc(sizeof(DFFT2), "energy");
  682.  for(i=0;i<FFT_SIZE/2;i++) x_r[i] = x_i[i] = energy[i] = 0;
  683.  if(!init){
  684.     rev = (int *) mem_alloc(sizeof(IFFT2), "rev");
  685.     w_r = (double *) mem_alloc(sizeof(D9), "w_r");
  686.     w_i = (double *) mem_alloc(sizeof(D9), "w_i");
  687.     M = 9;
  688.     MM1 = 8;
  689.     N = FFT_SIZE/2;
  690.     for(L=0;L<M;L++){
  691.        le = 1 << (M-L);
  692.        le1 = le >> 1;
  693.        w_r[L] = cos(PI/le1);
  694.        w_i[L] = -sin(PI/le1);
  695.     }
  696.     for(i=0;i<FFT_SIZE/2;rev[i] = l,i++) for(j=0,l=0;j<9;j++){
  697.        k=(i>>j) & 1;
  698.        l |= (k<<8-j);                
  699.     }
  700.     init = 1;
  701.  }
  702.  memcpy( (char *) x_r, (char *) sample, sizeof(double) * FFT_SIZE/2);
  703.  for(L=0;L<MM1;L++){
  704.     le = 1 << (M-L);
  705.     le1 = le >> 1;
  706.     u_r = 1;
  707.     u_i = 0;
  708.     for(j=0;j<le1;j++){
  709.        for(i=j;i<N;i+=le){
  710.           ip = i + le1;
  711.           t_r = x_r[i] + x_r[ip];
  712.           t_i = x_i[i] + x_i[ip];
  713.           x_r[ip] = x_r[i] - x_r[ip];
  714.           x_i[ip] = x_i[i] - x_i[ip];
  715.           x_r[i] = t_r;
  716.           x_i[i] = t_i;
  717.           t_r = x_r[ip];
  718.           x_r[ip] = x_r[ip] * u_r - x_i[ip] * u_i;
  719.           x_i[ip] = x_i[ip] * u_r + t_r * u_i;
  720.        }
  721.        t_r = u_r;
  722.        u_r = u_r * w_r[L] - u_i * w_i[L];
  723.        u_i = u_i * w_r[L] + t_r * w_i[L];
  724.     }
  725.  }
  726.  for(i=0;i<N;i+=2){
  727.     ip = i + 1;
  728.     t_r = x_r[i] + x_r[ip];
  729.     t_i = x_i[i] + x_i[ip];
  730.     x_r[ip] = x_r[i] - x_r[ip];
  731.     x_i[ip] = x_i[i] - x_i[ip];
  732.     x_r[i] = t_r;
  733.     x_i[i] = t_i;
  734.     energy[i] = x_r[i] * x_r[i] + x_i[i] * x_i[i];
  735.  }
  736.  for(i=0;i<FFT_SIZE/2;i++) if(i<rev[i]){
  737.     t_r = energy[i];
  738.     energy[i] = energy[rev[i]];
  739.     energy[rev[i]] = t_r;
  740.  }
  741.  for(i=0;i<HAN_SIZE/2;i++){                     /* calculate power  */
  742.     if(energy[i] < 1E-20) energy[i] = 1E-20;    /* density spectrum */
  743.        power[i].x = 10 * log10(energy[i]) + POWERNORM;
  744.        power[i].next = STOP;
  745.        power[i].type = FALSE;
  746.  }
  747.  mem_free((void **) &x_r);
  748.  mem_free((void **) &x_i);
  749.  mem_free((void **) &energy);
  750. }
  751. /****************************************************************/
  752. /*
  753. /*         Window the incoming audio signal.
  754. /*
  755. /****************************************************************/
  756. void I_hann_win(sample)             /* this function calculates a  */
  757. double FAR sample[FFT_SIZE/2];  /* Hann window for PCM (input) */
  758. {                                   /* samples for a 512-pt. FFT   */
  759.  register int i;
  760.  register double sqrt_8_over_3;
  761.  static int init = 0;
  762.  static double FAR *window;
  763.  if(!init){  /* calculate window function for the Fourier transform */
  764.     window = (double FAR *) mem_alloc(sizeof(DFFT2), "window");
  765.     sqrt_8_over_3 = pow(8.0/3.0, 0.5);
  766.     for(i=0;i<FFT_SIZE/2;i++){
  767.       /* Hann window formula */
  768.       window[i]=sqrt_8_over_3*0.5*(1-cos(2.0*PI*i/(FFT_SIZE/2)))/(FFT_SIZE/2);
  769.     }
  770.     init = 1;
  771.  }
  772.  for(i=0;i<FFT_SIZE/2;i++) sample[i] *= window[i];
  773. }
  774. /*******************************************************************/
  775. /*
  776. /*        This function finds the maximum spectral component in each
  777. /* subband and return them to the encoder for time-domain threshold
  778. /* determination.
  779. /*
  780. /*******************************************************************/
  781. #ifndef LONDON
  782. void I_pick_max(power, spike)
  783. double FAR spike[SBLIMIT];
  784. mask FAR power[HAN_SIZE/2];
  785. {
  786.  double max;
  787.  int i,j;
  788.  /* calculate the spectral component in each subband */
  789.  for(i=0;i<HAN_SIZE/2;spike[i>>3] = max, i+=8)
  790.     for(j=0, max = DBMIN;j<8;j++) max = (max>power[i+j].x) ? max : power[i+j].x;
  791. }
  792. #else
  793. void I_pick_max(power, spike)
  794. double FAR spike[SBLIMIT];
  795. mask FAR power[HAN_SIZE];
  796. {
  797.  double sum;
  798.  int i,j;
  799.  for(i=0;i<HAN_SIZE/2;spike[i>>3] = 10.0*log10(sum), i+=8)
  800.                                                    /* calculate the      */
  801.  for(j=0, sum = pow(10.0,0.1*DBMIN);j<8;j++)       /* sum of spectral   */
  802.    sum += pow(10.0,0.1*power[i+j].x);              /* component in each  */
  803. }                                                  /* subband from bound */
  804. #endif
  805. /****************************************************************/
  806. /*
  807. /*        This function labels the tonal component in the power
  808. /* spectrum.
  809. /*
  810. /****************************************************************/
  811. void I_tonal_label(power, tone)     /* this function extracts   */
  812. mask FAR power[HAN_SIZE/2];     /* (tonal) sinusoidals from */
  813. int *tone;                          /* the spectrum             */
  814. {
  815.  int i,j, last = LAST, first, run;
  816.  double max;
  817.  int last_but_one= LAST;
  818.  *tone = LAST;
  819.  for(i=2;i<HAN_SIZE/2-6;i++){
  820.     if(power[i].x>power[i-1].x && power[i].x>=power[i+1].x){
  821.        power[i].type = TONE;
  822.        power[i].next = LAST;
  823.        if(last != LAST) power[last].next = i;
  824.        else first = *tone = i;
  825.        last = i;
  826.     }
  827.  }
  828.  last = LAST;
  829.  first = *tone;
  830.  *tone = LAST;
  831.  while(first != LAST){                /* conditions for the tonal     */
  832.     if(first<3 || first>250) run = 0; /* otherwise k+/-j will be out of bounds*/
  833.     else if(first<63) run = 2;        /* components in layer I, which */
  834.     else if(first<127) run = 3;       /* are the boundaries for calc.   */
  835.     else run = 6;                     /* the tonal components          */
  836.     max = power[first].x - 7;
  837.     for(j=2;j<=run;j++)  /* after calc. of tonal components, set to loc.*/
  838.        if(max < power[first-j].x || max < power[first+j].x){   /* max   */
  839.           power[first].type = FALSE;
  840.           break;
  841.        }
  842.     if(power[first].type == TONE){    /* extract tonal components */
  843.        int help=first;
  844.        if(*tone == LAST) *tone = first;
  845.        while((power[help].next!=LAST)&&(power[help].next-first)<=run)
  846.           help=power[help].next;
  847.        help=power[help].next;
  848.        power[first].next=help;
  849.        if((first-last)<=run){
  850.           if(last_but_one != LAST) power[last_but_one].next=first;
  851.        }
  852.        if(first>1 && first<255){     /* calculate the sum of the */
  853.           double tmp;                /* powers of the components */
  854.           tmp = add_db(power[first-1].x, power[first+1].x);
  855.           power[first].x = add_db(power[first].x, tmp);
  856.        }
  857.        for(j=1;j<=run;j++){
  858.           power[first-j].x = power[first+j].x = DBMIN;
  859.           power[first-j].next = power[first+j].next = STOP; /*dpwe: 2nd was .x*/
  860.           power[first-j].type = power[first+j].type = FALSE;
  861.        }
  862.        last_but_one=last;
  863.        last = first;
  864.        first = power[first].next;
  865.     }
  866.     else {
  867.        int ll;
  868.        if(last == LAST) ; /* *tone = power[first].next; dpwe */
  869.        else power[last].next = power[first].next;
  870.        ll = first;
  871.        first = power[first].next;
  872.        power[ll].next = STOP;
  873.     }
  874.  }
  875. }                        
  876.                                 
  877. /****************************************************************/
  878. /*
  879. /*        This function finds the minimum masking threshold and
  880. /* return the value to the encoder.
  881. /*
  882. /****************************************************************/
  883. void I_minimum_mask(ltg,ltmin)
  884. g_thres FAR *ltg;
  885. double FAR ltmin[SBLIMIT];
  886. {
  887.  double min;
  888.  int i,j;
  889.  j=1;
  890.  for(i=0;i<SBLIMIT;i++)
  891.     if(j>=sub_size-1)                   /* check subband limit, and       */
  892.        ltmin[i] = ltg[sub_size-1].hear; /* calculate the minimum masking  */
  893.     else {                              /* level of LTMIN for each subband*/
  894.        min = ltg[j].x;
  895.        while(ltg[j].line>>3 == i && j < sub_size){
  896.           if (min>ltg[j].x)  min = ltg[j].x;
  897.           j++;
  898.        }
  899.        ltmin[i] = min;
  900.     }
  901. }
  902. /*****************************************************************/
  903. /*
  904. /*        This procedure is called in musicin to pick out the
  905. /* smaller of the scalefactor or threshold.
  906. /*
  907. /*****************************************************************/
  908. void I_smr(ltmin, spike, scale)
  909. double FAR spike[SBLIMIT], scale[SBLIMIT], ltmin[SBLIMIT];
  910. {
  911.  int i;
  912.  double max;
  913.                 
  914.  for(i=0;i<SBLIMIT;i++){                      /* determine the signal   */
  915.     max = 20 * log10(scale[i] * 32768) - 10;  /* level for each subband */
  916.     if(spike[i]>max) max = spike[i];          /* for the scalefactor    */
  917.     max -= ltmin[i];
  918.     ltmin[i] = max;
  919.  }
  920. }
  921.         
  922. /****************************************************************/
  923. /*
  924. /*        This procedure calls all the necessary functions to
  925. /* complete the psychoacoustic analysis.
  926. /*
  927. /****************************************************************/
  928. void I_Psycho_One(buffer, scale, ltmin, fr_ps)
  929. short FAR buffer[2][1152];
  930. double FAR scale[2][SBLIMIT], ltmin[2][SBLIMIT];
  931. frame_params *fr_ps;
  932. {
  933.  int stereo = fr_ps->stereo;
  934.  the_layer info = fr_ps->header;
  935.  int k,i, tone=0, noise=0;
  936.  static char init = 0;
  937.  static int off[2] = {256,256};
  938.  double *sample;
  939.  DSBL *spike;
  940.  static D640 *fft_buf;
  941.  static mask_ptr FAR power;
  942.  static g_ptr FAR ltg;
  943.  sample = (double *) mem_alloc(sizeof(DFFT2), "sample");
  944.  spike = (DSBL *) mem_alloc(sizeof(D2SBL), "spike");
  945.             /* call functions for critical boundaries, freq. */
  946.  if(!init){ /* bands, bark values, and mapping              */
  947.     fft_buf = (D640 *) mem_alloc(sizeof(D640) * 2, "fft_buf");
  948.     power = (mask_ptr FAR ) mem_alloc(sizeof(mask) * HAN_SIZE/2, "power");
  949.     read_cbound(info->lay,info->sampling_frequency);
  950.     read_freq_band(&ltg,info->lay,info->sampling_frequency);
  951.     make_map(power,ltg);
  952.     for(i=0;i<640;i++) fft_buf[0][i] = fft_buf[1][i] = 0;
  953.     init = 1;
  954.  }
  955.  for(k=0;k<stereo;k++){    /* check PCM input for a block of */
  956.     for(i=0;i<384;i++)     /* 384 samples for a 512-pt. FFT  */
  957.        fft_buf[k][(i+off[k])%640]= (double) buffer[k][i]/SCALE;
  958.     for(i=0;i<FFT_SIZE/2;i++)
  959.        sample[i] = fft_buf[k][(i+448+off[k])%640];
  960.     off[k] += 384;
  961.     off[k] %= 640;
  962.                         /* call functions for windowing PCM samples,   */
  963.     I_hann_win(sample); /* location of spectral components in each     */
  964.     for(i=0;i<HAN_SIZE/2;i++) power[i].x = DBMIN;   /* subband with    */
  965.     I_f_f_t(sample, power);              /* labeling, locate remaining */
  966.     I_pick_max(power, &spike[k][0]);     /* non-tonal sinusoidals,     */
  967.     I_tonal_label(power, &tone);         /* reduce noise & tonal com., */
  968.     noise_label(power, &noise, ltg);     /* find global & minimal      */
  969.     subsampling(power, ltg, &tone, &noise);  /* threshold, and sgnl-   */
  970.     threshold(power, ltg, &tone, &noise,     /* to-mask ratio          */
  971.       bitrate[info->lay-1][info->bitrate_index]/stereo);
  972.     I_minimum_mask(ltg, &ltmin[k][0]);
  973.     I_smr(&ltmin[k][0], &spike[k][0], &scale[k][0]);        
  974.  }
  975.  mem_free((void **) &sample);
  976.  mem_free((void **) &spike);
  977. }