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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: vbr.c
  3.    VBR-related routines
  4.    Redistribution and use in source and binary forms, with or without
  5.    modification, are permitted provided that the following conditions
  6.    are met:
  7.    
  8.    - Redistributions of source code must retain the above copyright
  9.    notice, this list of conditions and the following disclaimer.
  10.    
  11.    - Redistributions in binary form must reproduce the above copyright
  12.    notice, this list of conditions and the following disclaimer in the
  13.    documentation and/or other materials provided with the distribution.
  14.    
  15.    - Neither the name of the Xiph.org Foundation nor the names of its
  16.    contributors may be used to endorse or promote products derived from
  17.    this software without specific prior written permission.
  18.    
  19.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  23.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  27.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifdef HAVE_CONFIG_H
  32. #include "config.h"
  33. #endif
  34. #include "vbr.h"
  35. #include <math.h>
  36. #define sqr(x) ((x)*(x))
  37. #define MIN_ENERGY 6000
  38. #define NOISE_POW .3
  39. const float vbr_nb_thresh[9][11]={
  40.    {-1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0}, /*   CNG   */
  41.    { 3.5,  2.5,  2.0,  1.2,  0.5,  0.0, -0.5, -0.7, -0.8, -0.9, -1.0}, /*  2 kbps */
  42.    {10.0,  6.5,  5.2,  4.5,  3.9,  3.5,  3.0,  2.5,  2.3,  1.8,  1.0}, /*  6 kbps */
  43.    {11.0,  8.8,  7.5,  6.5,  5.0,  3.9,  3.9,  3.9,  3.5,  3.0,  1.0}, /*  8 kbps */
  44.    {11.0, 11.0,  9.9,  9.0,  8.0,  7.0,  6.5,  6.0,  5.0,  4.0,  2.0}, /* 11 kbps */
  45.    {11.0, 11.0, 11.0, 11.0,  9.5,  9.0,  8.0,  7.0,  6.5,  5.0,  3.0}, /* 15 kbps */
  46.    {11.0, 11.0, 11.0, 11.0, 11.0, 11.0,  9.5,  8.5,  8.0,  6.5,  4.0}, /* 18 kbps */
  47.    {11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0,  9.8,  7.5,  5.5}, /* 24 kbps */ 
  48.    { 8.0,  5.0,  3.7,  3.0,  2.5,  2.0,  1.8,  1.5,  1.0,  0.0,  0.0}  /*  4 kbps */
  49. };
  50. const float vbr_hb_thresh[5][11]={
  51.    {-1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0}, /* silence */
  52.    {-1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0}, /*  2 kbps */
  53.    {11.0, 11.0,  9.5,  8.5,  7.5,  6.0,  5.0,  3.9,  3.0,  2.0,  1.0}, /*  6 kbps */
  54.    {11.0, 11.0, 11.0, 11.0, 11.0,  9.5,  8.7,  7.8,  7.0,  6.5,  4.0}, /* 10 kbps */
  55.    {11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0,  9.8,  7.5,  5.5}  /* 18 kbps */ 
  56. };
  57. const float vbr_uhb_thresh[2][11]={
  58.    {-1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0, -1.0}, /* silence */
  59.    { 3.9,  2.5,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0,  0.0, -1.0}  /*  2 kbps */
  60. };
  61. void vbr_init(VBRState *vbr)
  62. {
  63.    int i;
  64.    vbr->average_energy=0;
  65.    vbr->last_energy=1;
  66.    vbr->accum_sum=0;
  67.    vbr->energy_alpha=.1;
  68.    vbr->soft_pitch=0;
  69.    vbr->last_pitch_coef=0;
  70.    vbr->last_quality=0;
  71.    vbr->noise_accum = .05*pow(MIN_ENERGY, NOISE_POW);
  72.    vbr->noise_accum_count=.05;
  73.    vbr->noise_level=vbr->noise_accum/vbr->noise_accum_count;
  74.    vbr->consec_noise=0;
  75.    for (i=0;i<VBR_MEMORY_SIZE;i++)
  76.       vbr->last_log_energy[i] = log(MIN_ENERGY);
  77. }
  78. /*
  79.   This function should analyse the signal and decide how critical the
  80.   coding error will be perceptually. The following factors should be
  81.   taken into account:
  82.   -Attacks (positive energy derivative) should be coded with more bits
  83.   -Stationary voiced segments should receive more bits
  84.   -Segments with (very) low absolute energy should receive less bits (maybe
  85.   only shaped noise?)
  86.   -DTX for near-zero energy?
  87.   -Stationary fricative segments should have less bits
  88.   -Temporal masking: when energy slope is decreasing, decrease the bit-rate
  89.   -Decrease bit-rate for males (low pitch)?
  90.   -(wideband only) less bits in the high-band when signal is very 
  91.   non-stationary (harder to notice high-frequency noise)???
  92. */
  93. float vbr_analysis(VBRState *vbr, spx_word16_t *sig, int len, int pitch, float pitch_coef)
  94. {
  95.    int i;
  96.    float ener=0, ener1=0, ener2=0;
  97.    float qual=7;
  98.    int va;
  99.    float log_energy;
  100.    float non_st=0;
  101.    float voicing;
  102.    float pow_ener;
  103.    for (i=0;i<len>>1;i++)
  104.       ener1 += ((float)sig[i])*sig[i];
  105.    for (i=len>>1;i<len;i++)
  106.       ener2 += ((float)sig[i])*sig[i];
  107.    ener=ener1+ener2;
  108.    log_energy = log(ener+MIN_ENERGY);
  109.    for (i=0;i<VBR_MEMORY_SIZE;i++)
  110.       non_st += sqr(log_energy-vbr->last_log_energy[i]);
  111.    non_st =  non_st/(30*VBR_MEMORY_SIZE);
  112.    if (non_st>1)
  113.       non_st=1;
  114.    voicing = 3*(pitch_coef-.4)*fabs(pitch_coef-.4);
  115.    vbr->average_energy = (1-vbr->energy_alpha)*vbr->average_energy + vbr->energy_alpha*ener;
  116.    vbr->noise_level=vbr->noise_accum/vbr->noise_accum_count;
  117.    pow_ener = pow(ener,NOISE_POW);
  118.    if (vbr->noise_accum_count<.06 && ener>MIN_ENERGY)
  119.       vbr->noise_accum = .05*pow_ener;
  120.    if ((voicing<.3 && non_st < .2 && pow_ener < 1.2*vbr->noise_level)
  121.        || (voicing<.3 && non_st < .05 && pow_ener < 1.5*vbr->noise_level)
  122.        || (voicing<.4 && non_st < .05 && pow_ener < 1.2*vbr->noise_level)
  123.        || (voicing<0 && non_st < .05))
  124.    {
  125.       float tmp;
  126.       va = 0;
  127.       vbr->consec_noise++;
  128.       if (pow_ener > 3*vbr->noise_level)
  129.          tmp = 3*vbr->noise_level;
  130.       else 
  131.          tmp = pow_ener;
  132.       if (vbr->consec_noise>=4)
  133.       {
  134.          vbr->noise_accum = .95*vbr->noise_accum + .05*tmp;
  135.          vbr->noise_accum_count = .95*vbr->noise_accum_count + .05;
  136.       }
  137.    } else {
  138.       va = 1;
  139.       vbr->consec_noise=0;
  140.    }
  141.    if (pow_ener < vbr->noise_level && ener>MIN_ENERGY)
  142.    {
  143.       vbr->noise_accum = .95*vbr->noise_accum + .05*pow_ener;
  144.       vbr->noise_accum_count = .95*vbr->noise_accum_count + .05;      
  145.    }
  146.    /* Checking for very low absolute energy */
  147.    if (ener < 30000)
  148.    {
  149.       qual -= .7;
  150.       if (ener < 10000)
  151.          qual-=.7;
  152.       if (ener < 3000)
  153.          qual-=.7;
  154.    } else {
  155.       float short_diff, long_diff;
  156.       short_diff = log((ener+1)/(1+vbr->last_energy));
  157.       long_diff = log((ener+1)/(1+vbr->average_energy));
  158.       /*fprintf (stderr, "%f %fn", short_diff, long_diff);*/
  159.       if (long_diff<-5)
  160.          long_diff=-5;
  161.       if (long_diff>2)
  162.          long_diff=2;
  163.       if (long_diff>0)
  164.          qual += .6*long_diff;
  165.       if (long_diff<0)
  166.          qual += .5*long_diff;
  167.       if (short_diff>0)
  168.       {
  169.          if (short_diff>5)
  170.             short_diff=5;
  171.          qual += .5*short_diff;
  172.       }
  173.       /* Checking for energy increases */
  174.       if (ener2 > 1.6*ener1)
  175.          qual += .5;
  176.    }
  177.    vbr->last_energy = ener;
  178.    vbr->soft_pitch = .6*vbr->soft_pitch + .4*pitch_coef;
  179.    qual += 2.2*((pitch_coef-.4) + (vbr->soft_pitch-.4));
  180.    if (qual < vbr->last_quality)
  181.       qual = .5*qual + .5*vbr->last_quality;
  182.    if (qual<4)
  183.       qual=4;
  184.    if (qual>10)
  185.       qual=10;
  186.    
  187.    /*
  188.    if (vbr->consec_noise>=2)
  189.       qual-=1.3;
  190.    if (vbr->consec_noise>=5)
  191.       qual-=1.3;
  192.    if (vbr->consec_noise>=12)
  193.       qual-=1.3;
  194.    */
  195.    if (vbr->consec_noise>=3)
  196.       qual=4;
  197.    if (vbr->consec_noise)
  198.       qual -= 1.0 * (log(3.0 + vbr->consec_noise)-log(3));
  199.    if (qual<0)
  200.       qual=0;
  201.    
  202.    if (ener<60000)
  203.    {
  204.       if (vbr->consec_noise>2)
  205.          qual-=0.5*(log(3.0 + vbr->consec_noise)-log(3));
  206.       if (ener<10000&&vbr->consec_noise>2)
  207.          qual-=0.5*(log(3.0 + vbr->consec_noise)-log(3));
  208.       if (qual<0)
  209.          qual=0;
  210.       qual += .3*log(ener/60000.0);
  211.    }
  212.    if (qual<-1)
  213.       qual=-1;
  214.    /*printf ("%f %f %f %f %dn", qual, voicing, non_st, pow_ener/(.01+vbr->noise_level), va);*/
  215.    vbr->last_pitch_coef = pitch_coef;
  216.    vbr->last_quality = qual;
  217.    for (i=VBR_MEMORY_SIZE-1;i>0;i--)
  218.       vbr->last_log_energy[i] = vbr->last_log_energy[i-1];
  219.    vbr->last_log_energy[0] = log_energy;
  220.    /*printf ("VBR: %f %f %f %d %fn", (float)(log_energy-log(vbr->average_energy+MIN_ENERGY)), non_st, voicing, va, vbr->noise_level);*/
  221.    return qual;
  222. }
  223. void vbr_destroy(VBRState *vbr)
  224. {
  225. }