preprocess.c
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:28k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2003 Epic Games 
  2.    Written by Jean-Marc Valin
  3.    File: preprocess.c
  4.    Preprocessor with denoising based on the algorithm by Ephraim and Malah
  5.    Redistribution and use in source and binary forms, with or without
  6.    modification, are permitted provided that the following conditions are
  7.    met:
  8.    1. Redistributions of source code must retain the above copyright notice,
  9.    this list of conditions and the following disclaimer.
  10.    2. Redistributions in binary form must reproduce the above copyright
  11.    notice, this list of conditions and the following disclaimer in the
  12.    documentation and/or other materials provided with the distribution.
  13.    3. The name of the author may not be used to endorse or promote products
  14.    derived from this software without specific prior written permission.
  15.    THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
  16.    IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  17.    OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  18.    DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
  19.    INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  20.    (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  21.    SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  22.    HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  23.    STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
  24.    ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  25.    POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. #ifdef HAVE_CONFIG_H
  28. #include "config.h"
  29. #endif
  30. #include <math.h>
  31. #include "speex/speex_preprocess.h"
  32. #include "misc.h"
  33. #include "smallft.h"
  34. #define max(a,b) ((a) > (b) ? (a) : (b))
  35. #define min(a,b) ((a) < (b) ? (a) : (b))
  36. #ifndef M_PI
  37. #define M_PI 3.14159263
  38. #endif
  39. #define SQRT_M_PI_2 0.88623
  40. #define LOUDNESS_EXP 2.5
  41. #define NB_BANDS 8
  42. #define ZMIN .1
  43. #define ZMAX .316
  44. #define ZMIN_1 10
  45. #define LOG_MIN_MAX_1 0.86859
  46. static void conj_window(float *w, int len)
  47. {
  48.    int i;
  49.    for (i=0;i<len;i++)
  50.    {
  51.       float x=4*((float)i)/len;
  52.       int inv=0;
  53.       if (x<1)
  54.       {
  55.       } else if (x<2)
  56.       {
  57.          x=2-x;
  58.          inv=1;
  59.       } else if (x<3)
  60.       {
  61.          x=x-2;
  62.          inv=1;
  63.       } else {
  64.          x=4-x;
  65.       }
  66.       x*=1.9979;
  67.       w[i]=(.5-.5*cos(x))*(.5-.5*cos(x));
  68.       if (inv)
  69.          w[i]=1-w[i];
  70.       w[i]=sqrt(w[i]);
  71.    }
  72. }
  73. /* This function approximates the gain function 
  74.    y = gamma(1.25)^2 * M(-.25;1;-x) / sqrt(x)  
  75.    which multiplied by xi/(1+xi) is the optimal gain
  76.    in the loudness domain ( sqrt[amplitude] )
  77. */
  78. static float hypergeom_gain(float x)
  79. {
  80.    int ind;
  81.    float integer, frac;
  82.    static const float table[21] = {
  83.       0.82157f, 1.02017f, 1.20461f, 1.37534f, 1.53363f, 1.68092f, 1.81865f, 
  84.       1.94811f, 2.07038f, 2.18638f, 2.29688f, 2.40255f, 2.50391f, 2.60144f, 
  85.       2.69551f, 2.78647f, 2.87458f, 2.96015f, 3.04333f, 3.12431f, 3.20326f};
  86.    
  87.    if (x>9.5)
  88.       return 1+.12/x;
  89.    integer = floor(2*x);
  90.    frac = 2*x-integer;
  91.    ind = (int)integer;
  92.    /*if (ind > 20 || ind < 0)
  93.    fprintf (stderr, "error: %d %fn", ind, x);*/
  94.    return ((1-frac)*table[ind] + frac*table[ind+1])/sqrt(x+.0001f);
  95. }
  96. SpeexPreprocessState *speex_preprocess_state_init(int frame_size, int sampling_rate)
  97. {
  98.    int i;
  99.    int N, N3, N4;
  100.    SpeexPreprocessState *st = (SpeexPreprocessState *)speex_alloc(sizeof(SpeexPreprocessState));
  101.    st->frame_size = frame_size;
  102.    /* Round ps_size down to the nearest power of two */
  103. #if 0
  104.    i=1;
  105.    st->ps_size = st->frame_size;
  106.    while(1)
  107.    {
  108.       if (st->ps_size & ~i)
  109.       {
  110.          st->ps_size &= ~i;
  111.          i<<=1;
  112.       } else {
  113.          break;
  114.       }
  115.    }
  116.    
  117.    
  118.    if (st->ps_size < 3*st->frame_size/4)
  119.       st->ps_size = st->ps_size * 3 / 2;
  120. #else
  121.    st->ps_size = st->frame_size;
  122. #endif
  123.    N = st->ps_size;
  124.    N3 = 2*N - st->frame_size;
  125.    N4 = st->frame_size - N3;
  126.    
  127.    st->sampling_rate = sampling_rate;
  128.    st->denoise_enabled = 1;
  129.    st->agc_enabled = 0;
  130.    st->agc_level = 8000;
  131.    st->vad_enabled = 0;
  132.    st->dereverb_enabled = 0;
  133.    st->reverb_decay = .5;
  134.    st->reverb_level = .2;
  135.    st->frame = (float*)speex_alloc(2*N*sizeof(float));
  136.    st->ps = (float*)speex_alloc(N*sizeof(float));
  137.    st->gain2 = (float*)speex_alloc(N*sizeof(float));
  138.    st->window = (float*)speex_alloc(2*N*sizeof(float));
  139.    st->noise = (float*)speex_alloc(N*sizeof(float));
  140.    st->reverb_estimate = (float*)speex_alloc(N*sizeof(float));
  141.    st->old_ps = (float*)speex_alloc(N*sizeof(float));
  142.    st->gain = (float*)speex_alloc(N*sizeof(float));
  143.    st->prior = (float*)speex_alloc(N*sizeof(float));
  144.    st->post = (float*)speex_alloc(N*sizeof(float));
  145.    st->loudness_weight = (float*)speex_alloc(N*sizeof(float));
  146.    st->inbuf = (float*)speex_alloc(N3*sizeof(float));
  147.    st->outbuf = (float*)speex_alloc(N3*sizeof(float));
  148.    st->echo_noise = (float*)speex_alloc(N*sizeof(float));
  149.    st->S = (float*)speex_alloc(N*sizeof(float));
  150.    st->Smin = (float*)speex_alloc(N*sizeof(float));
  151.    st->Stmp = (float*)speex_alloc(N*sizeof(float));
  152.    st->update_prob = (float*)speex_alloc(N*sizeof(float));
  153.    st->zeta = (float*)speex_alloc(N*sizeof(float));
  154.    st->Zpeak = 0;
  155.    st->Zlast = 0;
  156.    st->noise_bands = (float*)speex_alloc(NB_BANDS*sizeof(float));
  157.    st->noise_bands2 = (float*)speex_alloc(NB_BANDS*sizeof(float));
  158.    st->speech_bands = (float*)speex_alloc(NB_BANDS*sizeof(float));
  159.    st->speech_bands2 = (float*)speex_alloc(NB_BANDS*sizeof(float));
  160.    st->noise_bandsN = st->speech_bandsN = 1;
  161.    conj_window(st->window, 2*N3);
  162.    for (i=2*N3;i<2*st->ps_size;i++)
  163.       st->window[i]=1;
  164.    
  165.    if (N4>0)
  166.    {
  167.       for (i=N3-1;i>=0;i--)
  168.       {
  169.          st->window[i+N3+N4]=st->window[i+N3];
  170.          st->window[i+N3]=1;
  171.       }
  172.    }
  173.    for (i=0;i<N;i++)
  174.    {
  175.       st->noise[i]=1e4;
  176.       st->reverb_estimate[i]=0.;
  177.       st->old_ps[i]=1e4;
  178.       st->gain[i]=1;
  179.       st->post[i]=1;
  180.       st->prior[i]=1;
  181.    }
  182.    for (i=0;i<N3;i++)
  183.    {
  184.       st->inbuf[i]=0;
  185.       st->outbuf[i]=0;
  186.    }
  187.    for (i=0;i<N;i++)
  188.    {
  189.       float ff=((float)i)*.5*sampling_rate/((float)N);
  190.       st->loudness_weight[i] = .35f-.35f*ff/16000.f+.73f*exp(-.5f*(ff-3800)*(ff-3800)/9e5f);
  191.       if (st->loudness_weight[i]<.01f)
  192.          st->loudness_weight[i]=.01f;
  193.       st->loudness_weight[i] *= st->loudness_weight[i];
  194.    }
  195.    st->speech_prob = 0;
  196.    st->last_speech = 1000;
  197.    st->loudness = pow(6000,LOUDNESS_EXP);
  198.    st->loudness2 = 6000;
  199.    st->nb_loudness_adapt = 0;
  200.    st->fft_lookup = (struct drft_lookup*)speex_alloc(sizeof(struct drft_lookup));
  201.    spx_drft_init(st->fft_lookup,2*N);
  202.    st->nb_adapt=0;
  203.    st->consec_noise=0;
  204.    st->nb_preprocess=0;
  205.    return st;
  206. }
  207. void speex_preprocess_state_destroy(SpeexPreprocessState *st)
  208. {
  209.    speex_free(st->frame);
  210.    speex_free(st->ps);
  211.    speex_free(st->gain2);
  212.    speex_free(st->window);
  213.    speex_free(st->noise);
  214.    speex_free(st->reverb_estimate);
  215.    speex_free(st->old_ps);
  216.    speex_free(st->gain);
  217.    speex_free(st->prior);
  218.    speex_free(st->post);
  219.    speex_free(st->loudness_weight);
  220.    speex_free(st->echo_noise);
  221.    speex_free(st->S);
  222.    speex_free(st->Smin);
  223.    speex_free(st->Stmp);
  224.    speex_free(st->update_prob);
  225.    speex_free(st->zeta);
  226.    speex_free(st->noise_bands);
  227.    speex_free(st->noise_bands2);
  228.    speex_free(st->speech_bands);
  229.    speex_free(st->speech_bands2);
  230.    speex_free(st->inbuf);
  231.    speex_free(st->outbuf);
  232.    spx_drft_clear(st->fft_lookup);
  233.    speex_free(st->fft_lookup);
  234.    speex_free(st);
  235. }
  236. static void update_noise(SpeexPreprocessState *st, float *ps, float *echo)
  237. {
  238.    int i;
  239.    float beta;
  240.    st->nb_adapt++;
  241.    beta=1.0f/st->nb_adapt;
  242.    if (beta < .05f)
  243.       beta=.05f;
  244.    
  245.    if (!echo)
  246.    {
  247.       for (i=0;i<st->ps_size;i++)
  248.          st->noise[i] = (1.f-beta)*st->noise[i] + beta*ps[i];
  249.    } else {
  250.       for (i=0;i<st->ps_size;i++)
  251.          st->noise[i] = (1.f-beta)*st->noise[i] + beta*max(1.f,ps[i]-echo[i]); 
  252. #if 0
  253.       for (i=0;i<st->ps_size;i++)
  254.          st->noise[i] = 0;
  255. #endif
  256.    }
  257. }
  258. static int speex_compute_vad(SpeexPreprocessState *st, float *ps, float mean_prior, float mean_post)
  259. {
  260.    int i, is_speech=0;
  261.    int N = st->ps_size;
  262.    float scale=.5f/N;
  263.    /* FIXME: Clean this up a bit */
  264.    {
  265.       float bands[NB_BANDS];
  266.       int j;
  267.       float p0, p1;
  268.       float tot_loudness=0;
  269.       float x = sqrt(mean_post);
  270.       for (i=5;i<N-10;i++)
  271.       {
  272.          tot_loudness += scale*st->ps[i] * st->loudness_weight[i];
  273.       }
  274.       for (i=0;i<NB_BANDS;i++)
  275.       {
  276.          bands[i]=1e4f;
  277.          for (j=i*N/NB_BANDS;j<(i+1)*N/NB_BANDS;j++)
  278.          {
  279.             bands[i] += ps[j];
  280.          }
  281.          bands[i]=log(bands[i]);
  282.       }
  283.       
  284.       /*p1 = .0005+.6*exp(-.5*(x-.4)*(x-.4)*11)+.1*exp(-1.2*x);
  285.       if (x<1.5)
  286.          p0=.1*exp(2*(x-1.5));
  287.       else
  288.          p0=.02+.1*exp(-.2*(x-1.5));
  289.       */
  290.       p0=1.f/(1.f+exp(3.f*(1.5f-x)));
  291.       p1=1.f-p0;
  292.       /*fprintf (stderr, "%f %f ", p0, p1);*/
  293.       /*p0 *= .99*st->speech_prob + .01*(1-st->speech_prob);
  294.       p1 *= .01*st->speech_prob + .99*(1-st->speech_prob);
  295.       
  296.       st->speech_prob = p0/(p1+p0);
  297.       */
  298.       if (st->noise_bandsN < 50 || st->speech_bandsN < 50)
  299.       {
  300.          if (mean_post > 5.f)
  301.          {
  302.             float adapt = 1./st->speech_bandsN++;
  303.             if (adapt<.005f)
  304.                adapt = .005f;
  305.             for (i=0;i<NB_BANDS;i++)
  306.             {
  307.                st->speech_bands[i] = (1.f-adapt)*st->speech_bands[i] + adapt*bands[i];
  308.                /*st->speech_bands2[i] = (1-adapt)*st->speech_bands2[i] + adapt*bands[i]*bands[i];*/
  309.                st->speech_bands2[i] = (1.f-adapt)*st->speech_bands2[i] + adapt*(bands[i]-st->speech_bands[i])*(bands[i]-st->speech_bands[i]);
  310.             }
  311.          } else {
  312.             float adapt = 1./st->noise_bandsN++;
  313.             if (adapt<.005f)
  314.                adapt = .005f;
  315.             for (i=0;i<NB_BANDS;i++)
  316.             {
  317.                st->noise_bands[i] = (1.f-adapt)*st->noise_bands[i] + adapt*bands[i];
  318.                /*st->noise_bands2[i] = (1-adapt)*st->noise_bands2[i] + adapt*bands[i]*bands[i];*/
  319.                st->noise_bands2[i] = (1.f-adapt)*st->noise_bands2[i] + adapt*(bands[i]-st->noise_bands[i])*(bands[i]-st->noise_bands[i]);
  320.             }
  321.          }
  322.       }
  323.       p0=p1=1;
  324.       for (i=0;i<NB_BANDS;i++)
  325.       {
  326.          float noise_var, speech_var;
  327.          float noise_mean, speech_mean;
  328.          float tmp1, tmp2, pr;
  329.          /*noise_var = 1.01*st->noise_bands2[i] - st->noise_bands[i]*st->noise_bands[i];
  330.            speech_var = 1.01*st->speech_bands2[i] - st->speech_bands[i]*st->speech_bands[i];*/
  331.          noise_var = st->noise_bands2[i];
  332.          speech_var = st->speech_bands2[i];
  333.          if (noise_var < .1f)
  334.             noise_var = .1f;
  335.          if (speech_var < .1f)
  336.             speech_var = .1f;
  337.          
  338.          /*speech_var = sqrt(speech_var*noise_var);
  339.            noise_var = speech_var;*/
  340.          if (speech_var < .05f*speech_var)
  341.             noise_var = .05f*speech_var; 
  342.          if (speech_var < .05f*noise_var)
  343.             speech_var = .05f*noise_var;
  344.          
  345.          if (bands[i] < st->noise_bands[i])
  346.             speech_var = noise_var;
  347.          if (bands[i] > st->speech_bands[i])
  348.             noise_var = speech_var;
  349.          speech_mean = st->speech_bands[i];
  350.          noise_mean = st->noise_bands[i];
  351.          if (noise_mean < speech_mean - 5.f)
  352.             noise_mean = speech_mean - 5.f;
  353.          tmp1 = exp(-.5f*(bands[i]-speech_mean)*(bands[i]-speech_mean)/speech_var)/sqrt(2.f*M_PI*speech_var);
  354.          tmp2 = exp(-.5f*(bands[i]-noise_mean)*(bands[i]-noise_mean)/noise_var)/sqrt(2.f*M_PI*noise_var);
  355.          /*fprintf (stderr, "%f ", (float)(p0/(.01+p0+p1)));*/
  356.          /*fprintf (stderr, "%f ", (float)(bands[i]));*/
  357.          pr = tmp1/(1e-25+tmp1+tmp2);
  358.          /*if (bands[i] < st->noise_bands[i])
  359.             pr=.01;
  360.          if (bands[i] > st->speech_bands[i] && pr < .995)
  361.          pr=.995;*/
  362.          if (pr>.999f)
  363.             pr=.999f;
  364.          if (pr<.001f)
  365.             pr=.001f;
  366.          /*fprintf (stderr, "%f ", pr);*/
  367.          p0 *= pr;
  368.          p1 *= (1-pr);
  369.       }
  370.       p0 = pow(p0,.2);
  371.       p1 = pow(p1,.2);      
  372.       
  373. #if 1
  374.       p0 *= 2.f;
  375.       p0=p0/(p1+p0);
  376.       if (st->last_speech>20) 
  377.       {
  378.          float tmp = sqrt(tot_loudness)/st->loudness2;
  379.          tmp = 1.f-exp(-10.f*tmp);
  380.          if (p0>tmp)
  381.             p0=tmp;
  382.       }
  383.       p1=1-p0;
  384. #else
  385.       if (sqrt(tot_loudness) < .6f*st->loudness2 && p0>15.f*p1)
  386.          p0=15.f*p1;
  387.       if (sqrt(tot_loudness) < .45f*st->loudness2 && p0>7.f*p1)
  388.          p0=7.f*p1;
  389.       if (sqrt(tot_loudness) < .3f*st->loudness2 && p0>3.f*p1)
  390.          p0=3.f*p1;
  391.       if (sqrt(tot_loudness) < .15f*st->loudness2 && p0>p1)
  392.          p0=p1;
  393.       /*fprintf (stderr, "%f %f ", (float)(sqrt(tot_loudness) /( .25*st->loudness2)), p0/(p1+p0));*/
  394. #endif
  395.       p0 *= .99f*st->speech_prob + .01f*(1-st->speech_prob);
  396.       p1 *= .01f*st->speech_prob + .99f*(1-st->speech_prob);
  397.       
  398.       st->speech_prob = p0/(1e-25f+p1+p0);
  399.       /*fprintf (stderr, "%f %f %f ", tot_loudness, st->loudness2, st->speech_prob);*/
  400.       if (st->speech_prob>.35 || (st->last_speech < 20 && st->speech_prob>.1))
  401.       {
  402.          is_speech = 1;
  403.          st->last_speech = 0;
  404.       } else {
  405.          st->last_speech++;
  406.          if (st->last_speech<20)
  407.            is_speech = 1;
  408.       }
  409.       if (st->noise_bandsN > 50 && st->speech_bandsN > 50)
  410.       {
  411.          if (mean_post > 5)
  412.          {
  413.             float adapt = 1./st->speech_bandsN++;
  414.             if (adapt<.005f)
  415.                adapt = .005f;
  416.             for (i=0;i<NB_BANDS;i++)
  417.             {
  418.                st->speech_bands[i] = (1-adapt)*st->speech_bands[i] + adapt*bands[i];
  419.                /*st->speech_bands2[i] = (1-adapt)*st->speech_bands2[i] + adapt*bands[i]*bands[i];*/
  420.                st->speech_bands2[i] = (1-adapt)*st->speech_bands2[i] + adapt*(bands[i]-st->speech_bands[i])*(bands[i]-st->speech_bands[i]);
  421.             }
  422.          } else {
  423.             float adapt = 1./st->noise_bandsN++;
  424.             if (adapt<.005f)
  425.                adapt = .005f;
  426.             for (i=0;i<NB_BANDS;i++)
  427.             {
  428.                st->noise_bands[i] = (1-adapt)*st->noise_bands[i] + adapt*bands[i];
  429.                /*st->noise_bands2[i] = (1-adapt)*st->noise_bands2[i] + adapt*bands[i]*bands[i];*/
  430.                st->noise_bands2[i] = (1-adapt)*st->noise_bands2[i] + adapt*(bands[i]-st->noise_bands[i])*(bands[i]-st->noise_bands[i]);
  431.             }
  432.          }
  433.       }
  434.    }
  435.    return is_speech;
  436. }
  437. static void speex_compute_agc(SpeexPreprocessState *st, float mean_prior)
  438. {
  439.    int i;
  440.    int N = st->ps_size;
  441.    float scale=.5f/N;
  442.    float agc_gain;
  443.    int freq_start, freq_end;
  444.    float active_bands = 0;
  445.    freq_start = (int)(300.0f*2*N/st->sampling_rate);
  446.    freq_end   = (int)(2000.0f*2*N/st->sampling_rate);
  447.    for (i=freq_start;i<freq_end;i++)
  448.    {
  449.       if (st->S[i] > 20.f*st->Smin[i]+1000.f)
  450.          active_bands+=1;
  451.    }
  452.    active_bands /= (freq_end-freq_start+1);
  453.    if (active_bands > .2f)
  454.    {
  455.       float loudness=0.f;
  456.       float rate, rate2=.2f;
  457.       st->nb_loudness_adapt++;
  458.       rate=2.0f/(1+st->nb_loudness_adapt);
  459.       if (rate < .05f)
  460.          rate = .05f;
  461.       if (rate < .1f && pow(loudness, LOUDNESS_EXP) > st->loudness)
  462.          rate = .1f;
  463.       if (rate < .2f && pow(loudness, LOUDNESS_EXP) > 3.f*st->loudness)
  464.          rate = .2f;
  465.       if (rate < .4f && pow(loudness, LOUDNESS_EXP) > 10.f*st->loudness)
  466.          rate = .4f;
  467.       for (i=2;i<N;i++)
  468.       {
  469.          loudness += scale*st->ps[i] * st->gain2[i] * st->gain2[i] * st->loudness_weight[i];
  470.       }
  471.       loudness=sqrt(loudness);
  472.       /*if (loudness < 2*pow(st->loudness, 1.0/LOUDNESS_EXP) &&
  473.         loudness*2 > pow(st->loudness, 1.0/LOUDNESS_EXP))*/
  474.       st->loudness = (1-rate)*st->loudness + (rate)*pow(loudness, LOUDNESS_EXP);
  475.       
  476.       st->loudness2 = (1-rate2)*st->loudness2 + rate2*pow(st->loudness, 1.0f/LOUDNESS_EXP);
  477.       loudness = pow(st->loudness, 1.0f/LOUDNESS_EXP);
  478.       /*fprintf (stderr, "%f %f %fn", loudness, st->loudness2, rate);*/
  479.    }
  480.    
  481.    agc_gain = st->agc_level/st->loudness2;
  482.    /*fprintf (stderr, "%f %f %f %fn", active_bands, st->loudness, st->loudness2, agc_gain);*/
  483.    if (agc_gain>200)
  484.       agc_gain = 200;
  485.    for (i=0;i<N;i++)
  486.       st->gain2[i] *= agc_gain;
  487.    
  488. }
  489. static void preprocess_analysis(SpeexPreprocessState *st, spx_int16_t *x)
  490. {
  491.    int i;
  492.    int N = st->ps_size;
  493.    int N3 = 2*N - st->frame_size;
  494.    int N4 = st->frame_size - N3;
  495.    float *ps=st->ps;
  496.    /* 'Build' input frame */
  497.    for (i=0;i<N3;i++)
  498.       st->frame[i]=st->inbuf[i];
  499.    for (i=0;i<st->frame_size;i++)
  500.       st->frame[N3+i]=x[i];
  501.    
  502.    /* Update inbuf */
  503.    for (i=0;i<N3;i++)
  504.       st->inbuf[i]=x[N4+i];
  505.    /* Windowing */
  506.    for (i=0;i<2*N;i++)
  507.       st->frame[i] *= st->window[i];
  508.    /* Perform FFT */
  509.    spx_drft_forward(st->fft_lookup, st->frame);
  510.    /* Power spectrum */
  511.    ps[0]=1;
  512.    for (i=1;i<N;i++)
  513.       ps[i]=1+st->frame[2*i-1]*st->frame[2*i-1] + st->frame[2*i]*st->frame[2*i];
  514. }
  515. static void update_noise_prob(SpeexPreprocessState *st)
  516. {
  517.    int i;
  518.    int N = st->ps_size;
  519.    for (i=1;i<N-1;i++)
  520.       st->S[i] = 100.f+ .8f*st->S[i] + .05f*st->ps[i-1]+.1f*st->ps[i]+.05f*st->ps[i+1];
  521.    
  522.    if (st->nb_preprocess<1)
  523.    {
  524.       for (i=1;i<N-1;i++)
  525.          st->Smin[i] = st->Stmp[i] = st->S[i]+100.f;
  526.    }
  527.    if (st->nb_preprocess%200==0)
  528.    {
  529.       for (i=1;i<N-1;i++)
  530.       {
  531.          st->Smin[i] = min(st->Stmp[i], st->S[i]);
  532.          st->Stmp[i] = st->S[i];
  533.       }
  534.    } else {
  535.       for (i=1;i<N-1;i++)
  536.       {
  537.          st->Smin[i] = min(st->Smin[i], st->S[i]);
  538.          st->Stmp[i] = min(st->Stmp[i], st->S[i]);      
  539.       }
  540.    }
  541.    for (i=1;i<N-1;i++)
  542.    {
  543.       st->update_prob[i] *= .2f;
  544.       if (st->S[i] > 2.5*st->Smin[i])
  545.          st->update_prob[i] += .8f;
  546.       /*fprintf (stderr, "%f ", st->S[i]/st->Smin[i]);*/
  547.       /*fprintf (stderr, "%f ", st->update_prob[i]);*/
  548.    }
  549. }
  550. #define NOISE_OVERCOMPENS 1.4
  551. int speex_preprocess(SpeexPreprocessState *st, spx_int16_t *x, float *echo)
  552. {
  553.    int i;
  554.    int is_speech=1;
  555.    float mean_post=0;
  556.    float mean_prior=0;
  557.    int N = st->ps_size;
  558.    int N3 = 2*N - st->frame_size;
  559.    int N4 = st->frame_size - N3;
  560.    float scale=.5f/N;
  561.    float *ps=st->ps;
  562.    float Zframe=0, Pframe;
  563.    preprocess_analysis(st, x);
  564.    update_noise_prob(st);
  565.    st->nb_preprocess++;
  566.    /* Noise estimation always updated for the 20 first times */
  567.    if (st->nb_adapt<10)
  568.    {
  569.       update_noise(st, ps, echo);
  570.    }
  571.    /* Deal with residual echo if provided */
  572.    if (echo)
  573.       for (i=1;i<N;i++)
  574.          st->echo_noise[i] = (.3f*st->echo_noise[i] + echo[i]);
  575.    /* Compute a posteriori SNR */
  576.    for (i=1;i<N;i++)
  577.    {
  578.       st->post[i] = ps[i]/(1.f+NOISE_OVERCOMPENS*st->noise[i]+st->echo_noise[i]+st->reverb_estimate[i]) - 1.f;
  579.       if (st->post[i]>100.f)
  580.          st->post[i]=100.f;
  581.       /*if (st->post[i]<0)
  582.         st->post[i]=0;*/
  583.       mean_post+=st->post[i];
  584.    }
  585.    mean_post /= N;
  586.    if (mean_post<0.f)
  587.       mean_post=0.f;
  588.    /* Special case for first frame */
  589.    if (st->nb_adapt==1)
  590.       for (i=1;i<N;i++)
  591.          st->old_ps[i] = ps[i];
  592.    /* Compute a priori SNR */
  593.    {
  594.       /* A priori update rate */
  595.       float gamma;
  596.       float min_gamma=0.12f;
  597.       gamma = 1.0f/st->nb_preprocess;
  598.       /*Make update rate smaller when there's no speech*/
  599. #if 0
  600.       if (mean_post<3.5 && mean_prior < 1)
  601.          min_gamma *= (mean_post+.5);
  602.       else
  603.          min_gamma *= 4.;
  604. #else
  605.       min_gamma = .1f*fabs(mean_prior - mean_post)*fabs(mean_prior - mean_post);
  606.       if (min_gamma>.15f)
  607.          min_gamma = .15f;
  608.       if (min_gamma<.02f)
  609.          min_gamma = .02f;
  610. #endif
  611.       /*min_gamma = .08;*/
  612.       /*if (gamma<min_gamma)*/
  613.          gamma=min_gamma;
  614.       gamma = .1;
  615.       for (i=1;i<N;i++)
  616.       {
  617.          
  618.          /* A priori SNR update */
  619.          st->prior[i] = gamma*max(0.0f,st->post[i]) +
  620.          (1.f-gamma)*st->gain[i]*st->gain[i]*st->old_ps[i]/(1.f+NOISE_OVERCOMPENS*st->noise[i]+st->echo_noise[i]+st->reverb_estimate[i]);
  621.          
  622.          if (st->prior[i]>100.f)
  623.             st->prior[i]=100.f;
  624.          
  625.          mean_prior+=st->prior[i];
  626.       }
  627.    }
  628.    mean_prior /= N;
  629. #if 0
  630.    for (i=0;i<N;i++)
  631.    {
  632.       fprintf (stderr, "%f ", st->prior[i]);
  633.    }
  634.    fprintf (stderr, "n");
  635. #endif
  636.    /*fprintf (stderr, "%f %fn", mean_prior,mean_post);*/
  637.    if (st->nb_preprocess>=20)
  638.    {
  639.       int do_update = 0;
  640.       float noise_ener=0, sig_ener=0;
  641.       /* If SNR is low (both a priori and a posteriori), update the noise estimate*/
  642.       /*if (mean_prior<.23 && mean_post < .5)*/
  643.       if (mean_prior<.23f && mean_post < .5f)
  644.          do_update = 1;
  645.       for (i=1;i<N;i++)
  646.       {
  647.          noise_ener += st->noise[i];
  648.          sig_ener += ps[i];
  649.       }
  650.       if (noise_ener > 3.f*sig_ener)
  651.          do_update = 1;
  652.       /*do_update = 0;*/
  653.       if (do_update)
  654.       {
  655.          st->consec_noise++;
  656.       } else {
  657.          st->consec_noise=0;
  658.       }
  659.    }
  660.    if (st->vad_enabled)
  661.       is_speech = speex_compute_vad(st, ps, mean_prior, mean_post);
  662.    if (st->consec_noise>=3)
  663.    {
  664.       update_noise(st, st->old_ps, echo);
  665.    } else {
  666.       for (i=1;i<N-1;i++)
  667.       {
  668.          if (st->update_prob[i]<.5f || st->ps[i] < st->noise[i])
  669.          {
  670.             if (echo)
  671.                st->noise[i] = .90f*st->noise[i] + .1f*max(1.0f,st->ps[i]-echo[i]);
  672.             else
  673.                st->noise[i] = .90f*st->noise[i] + .1f*st->ps[i];
  674.          }
  675.       }
  676.    }
  677.    for (i=1;i<N;i++)
  678.    {
  679.       st->zeta[i] = .7f*st->zeta[i] + .3f*st->prior[i];
  680.    }
  681.    {
  682.       int freq_start = (int)(300.0f*2.f*N/st->sampling_rate);
  683.       int freq_end   = (int)(2000.0f*2.f*N/st->sampling_rate);
  684.       for (i=freq_start;i<freq_end;i++)
  685.       {
  686.          Zframe += st->zeta[i];         
  687.       }
  688.    }
  689.    Zframe /= N;
  690.    if (Zframe<ZMIN)
  691.    {
  692.       Pframe = 0;
  693.    } else {
  694.       if (Zframe > 1.5f*st->Zlast)
  695.       {
  696.          Pframe = 1.f;
  697.          st->Zpeak = Zframe;
  698.          if (st->Zpeak > 10.f)
  699.             st->Zpeak = 10.f;
  700.          if (st->Zpeak < 1.f)
  701.             st->Zpeak = 1.f;
  702.       } else {
  703.          if (Zframe < st->Zpeak*ZMIN)
  704.          {
  705.             Pframe = 0;
  706.          } else if (Zframe > st->Zpeak*ZMAX)
  707.          {
  708.             Pframe = 1;
  709.          } else {
  710.             Pframe = log(Zframe/(st->Zpeak*ZMIN)) / log(ZMAX/ZMIN);
  711.          }
  712.       }
  713.    }
  714.    st->Zlast = Zframe;
  715.    /*fprintf (stderr, "%fn", Pframe);*/
  716.    /* Compute gain according to the Ephraim-Malah algorithm */
  717.    for (i=1;i<N;i++)
  718.    {
  719.       float MM;
  720.       float theta;
  721.       float prior_ratio;
  722.       float p, q;
  723.       float zeta1;
  724.       float P1;
  725.       prior_ratio = st->prior[i]/(1.0001f+st->prior[i]);
  726.       theta = (1.f+st->post[i])*prior_ratio;
  727.       if (i==1 || i==N-1)
  728.          zeta1 = st->zeta[i];
  729.       else
  730.          zeta1 = .25f*st->zeta[i-1] + .5f*st->zeta[i] + .25f*st->zeta[i+1];
  731.       if (zeta1<ZMIN)
  732.          P1 = 0.f;
  733.       else if (zeta1>ZMAX)
  734.          P1 = 1.f;
  735.       else
  736.          P1 = LOG_MIN_MAX_1 * log(ZMIN_1*zeta1);
  737.   
  738.       /*P1 = log(zeta1/ZMIN)/log(ZMAX/ZMIN);*/
  739.       
  740.       /* FIXME: add global prob (P2) */
  741.       q = 1-Pframe*P1;
  742.       q = 1-P1;
  743.       if (q>.95f)
  744.          q=.95f;
  745.       p=1.f/(1.f + (q/(1.f-q))*(1.f+st->prior[i])*exp(-theta));
  746.       /*p=1;*/
  747. #if 0
  748.       /* log-spectral magnitude estimator */
  749.       if (theta<6)
  750.          MM = 0.74082*pow(theta+1,.61)/sqrt(.0001+theta);
  751.       else
  752.          MM=1;
  753. #else
  754.       /* Optimal estimator for loudness domain */
  755.       MM = hypergeom_gain(theta);
  756. #endif
  757.       st->gain[i] = prior_ratio * MM;
  758.       /*Put some (very arbitraty) limit on the gain*/
  759.       if (st->gain[i]>2.f)
  760.       {
  761.          st->gain[i]=2.f;
  762.       }
  763.       
  764.       st->reverb_estimate[i] = st->reverb_decay*st->reverb_estimate[i] + st->reverb_decay*st->reverb_level*st->gain[i]*st->gain[i]*st->ps[i];
  765.       if (st->denoise_enabled)
  766.       {
  767.          st->gain2[i]=p*p*st->gain[i];
  768.       } else {
  769.          st->gain2[i]=1.f;
  770.       }
  771.    }
  772.    st->gain2[0]=st->gain[0]=0.f;
  773.    st->gain2[N-1]=st->gain[N-1]=0.f;
  774.    if (st->agc_enabled)
  775.       speex_compute_agc(st, mean_prior);
  776. #if 0
  777.    if (!is_speech)
  778.    {
  779.       for (i=0;i<N;i++)
  780.          st->gain2[i] = 0;
  781.    }
  782. #if 0
  783.  else {
  784.       for (i=0;i<N;i++)
  785.          st->gain2[i] = 1;
  786.    }
  787. #endif
  788. #endif
  789.    /* Apply computed gain */
  790.    for (i=1;i<N;i++)
  791.    {
  792.       st->frame[2*i-1] *= st->gain2[i];
  793.       st->frame[2*i] *= st->gain2[i];
  794.    }
  795.    /* Get rid of the DC and very low frequencies */
  796.    st->frame[0]=0;
  797.    st->frame[1]=0;
  798.    st->frame[2]=0;
  799.    /* Nyquist frequency is mostly useless too */
  800.    st->frame[2*N-1]=0;
  801.    /* Inverse FFT with 1/N scaling */
  802.    spx_drft_backward(st->fft_lookup, st->frame);
  803.    for (i=0;i<2*N;i++)
  804.       st->frame[i] *= scale;
  805.    {
  806.       float max_sample=0;
  807.       for (i=0;i<2*N;i++)
  808.          if (fabs(st->frame[i])>max_sample)
  809.             max_sample = fabs(st->frame[i]);
  810.       if (max_sample>28000.f)
  811.       {
  812.          float damp = 28000.f/max_sample;
  813.          for (i=0;i<2*N;i++)
  814.             st->frame[i] *= damp;
  815.       }
  816.    }
  817.    for (i=0;i<2*N;i++)
  818.       st->frame[i] *= st->window[i];
  819.    /* Perform overlap and add */
  820.    for (i=0;i<N3;i++)
  821.       x[i] = st->outbuf[i] + st->frame[i];
  822.    for (i=0;i<N4;i++)
  823.       x[N3+i] = st->frame[N3+i];
  824.    
  825.    /* Update outbuf */
  826.    for (i=0;i<N3;i++)
  827.       st->outbuf[i] = st->frame[st->frame_size+i];
  828.    /* Save old power spectrum */
  829.    for (i=1;i<N;i++)
  830.       st->old_ps[i] = ps[i];
  831.    return is_speech;
  832. }
  833. void speex_preprocess_estimate_update(SpeexPreprocessState *st, spx_int16_t *x, float *echo)
  834. {
  835.    int i;
  836.    int N = st->ps_size;
  837.    int N3 = 2*N - st->frame_size;
  838.    float *ps=st->ps;
  839.    preprocess_analysis(st, x);
  840.    update_noise_prob(st);
  841.    st->nb_preprocess++;
  842.    
  843.    for (i=1;i<N-1;i++)
  844.    {
  845.       if (st->update_prob[i]<.5f || st->ps[i] < st->noise[i])
  846.       {
  847.          if (echo)
  848.             st->noise[i] = .90f*st->noise[i] + .1f*max(1.0f,st->ps[i]-echo[i]);
  849.          else
  850.             st->noise[i] = .90f*st->noise[i] + .1f*st->ps[i];
  851.       }
  852.    }
  853.    for (i=0;i<N3;i++)
  854.       st->outbuf[i] = x[st->frame_size-N3+i]*st->window[st->frame_size+i];
  855.    /* Save old power spectrum */
  856.    for (i=1;i<N;i++)
  857.       st->old_ps[i] = ps[i];
  858.    for (i=1;i<N;i++)
  859.       st->reverb_estimate[i] *= st->reverb_decay;
  860. }
  861. int speex_preprocess_ctl(SpeexPreprocessState *state, int request, void *ptr)
  862. {
  863.    int i;
  864.    SpeexPreprocessState *st;
  865.    st=(SpeexPreprocessState*)state;
  866.    switch(request)
  867.    {
  868.    case SPEEX_PREPROCESS_SET_DENOISE:
  869.       st->denoise_enabled = (*(int*)ptr);
  870.       break;
  871.    case SPEEX_PREPROCESS_GET_DENOISE:
  872.       (*(int*)ptr) = st->denoise_enabled;
  873.       break;
  874.    case SPEEX_PREPROCESS_SET_AGC:
  875.       st->agc_enabled = (*(int*)ptr);
  876.       break;
  877.    case SPEEX_PREPROCESS_GET_AGC:
  878.       (*(int*)ptr) = st->agc_enabled;
  879.       break;
  880.    case SPEEX_PREPROCESS_SET_AGC_LEVEL:
  881.       st->agc_level = (*(float*)ptr);
  882.       if (st->agc_level<1)
  883.          st->agc_level=1;
  884.       if (st->agc_level>32768)
  885.          st->agc_level=32768;
  886.       break;
  887.    case SPEEX_PREPROCESS_GET_AGC_LEVEL:
  888.       (*(float*)ptr) = st->agc_level;
  889.       break;
  890.    case SPEEX_PREPROCESS_SET_VAD:
  891.       st->vad_enabled = (*(int*)ptr);
  892.       break;
  893.    case SPEEX_PREPROCESS_GET_VAD:
  894.       (*(int*)ptr) = st->vad_enabled;
  895.       break;
  896.    
  897.    case SPEEX_PREPROCESS_SET_DEREVERB:
  898.       st->dereverb_enabled = (*(int*)ptr);
  899.       for (i=0;i<st->ps_size;i++)
  900.          st->reverb_estimate[i]=0;
  901.       break;
  902.    case SPEEX_PREPROCESS_GET_DEREVERB:
  903.       (*(int*)ptr) = st->dereverb_enabled;
  904.       break;
  905.    case SPEEX_PREPROCESS_SET_DEREVERB_LEVEL:
  906.       st->reverb_level = (*(float*)ptr);
  907.       break;
  908.    case SPEEX_PREPROCESS_GET_DEREVERB_LEVEL:
  909.       (*(float*)ptr) = st->reverb_level;
  910.       break;
  911.    
  912.    case SPEEX_PREPROCESS_SET_DEREVERB_DECAY:
  913.       st->reverb_decay = (*(float*)ptr);
  914.       break;
  915.    case SPEEX_PREPROCESS_GET_DEREVERB_DECAY:
  916.       (*(float*)ptr) = st->reverb_decay;
  917.       break;
  918.       default:
  919.       speex_warning_int("Unknown speex_preprocess_ctl request: ", request);
  920.       return -1;
  921.    }
  922.    return 0;
  923. }