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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: nb_celp.c
  3.    Redistribution and use in source and binary forms, with or without
  4.    modification, are permitted provided that the following conditions
  5.    are met:
  6.    
  7.    - Redistributions of source code must retain the above copyright
  8.    notice, this list of conditions and the following disclaimer.
  9.    
  10.    - 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.    
  14.    - Neither the name of the Xiph.org Foundation nor the names of its
  15.    contributors may be used to endorse or promote products derived from
  16.    this software without specific prior written permission.
  17.    
  18.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  19.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  20.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  21.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  22.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  23.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  24.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  25.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  26.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  27.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. */
  30. #ifdef HAVE_CONFIG_H
  31. #include "config.h"
  32. #endif
  33. #include <math.h>
  34. #include "nb_celp.h"
  35. #include "lpc.h"
  36. #include "lsp.h"
  37. #include "ltp.h"
  38. #include "quant_lsp.h"
  39. #include "cb_search.h"
  40. #include "filters.h"
  41. #include "stack_alloc.h"
  42. #include "vq.h"
  43. #include <speex/speex_bits.h>
  44. #include "vbr.h"
  45. #include "misc.h"
  46. #include <speex/speex_callbacks.h>
  47. #ifndef M_PI
  48. #define M_PI           3.14159265358979323846  /* pi */
  49. #endif
  50. #ifndef NULL
  51. #define NULL 0
  52. #endif
  53. #define SUBMODE(x) st->submodes[st->submodeID]->x
  54. /* Default size for the encoder and decoder stack (can be changed at compile time).
  55.    This does not apply when using variable-size arrays or alloca. */
  56. #ifndef NB_ENC_STACK
  57. #define NB_ENC_STACK (8000*sizeof(spx_sig_t))
  58. #endif
  59. #ifndef NB_DEC_STACK
  60. #define NB_DEC_STACK (4000*sizeof(spx_sig_t))
  61. #endif
  62. #ifdef FIXED_POINT
  63. const spx_word32_t ol_gain_table[32]={18900, 25150, 33468, 44536, 59265, 78865, 104946, 139653, 185838, 247297, 329081, 437913, 582736, 775454, 1031906, 1373169, 1827293, 2431601, 3235761, 4305867, 5729870, 7624808, 10146425, 13501971, 17967238, 23909222, 31816294, 42338330, 56340132, 74972501, 99766822, 132760927};
  64. const spx_word16_t exc_gain_quant_scal3_bound[7]={1841, 3883, 6051, 8062, 10444, 13580, 18560};
  65. const spx_word16_t exc_gain_quant_scal3[8]={1002, 2680, 5086, 7016, 9108, 11781, 15380, 21740};
  66. const spx_word16_t exc_gain_quant_scal1_bound[1]={14385};
  67. const spx_word16_t exc_gain_quant_scal1[2]={11546, 17224};
  68. #define LSP_MARGIN 16
  69. #define LSP_DELTA1 6553
  70. #define LSP_DELTA2 1638
  71. #else
  72. const float exc_gain_quant_scal3_bound[7]={0.112338, 0.236980, 0.369316, 0.492054, 0.637471, 0.828874, 1.132784};
  73. const float exc_gain_quant_scal3[8]={0.061130, 0.163546, 0.310413, 0.428220, 0.555887, 0.719055, 0.938694, 1.326874};
  74. const float exc_gain_quant_scal1_bound[1]={0.87798};
  75. const float exc_gain_quant_scal1[2]={0.70469, 1.05127};
  76. #define LSP_MARGIN .002
  77. #define LSP_DELTA1 .2
  78. #define LSP_DELTA2 .05
  79. #endif
  80. #define sqr(x) ((x)*(x))
  81. void *nb_encoder_init(const SpeexMode *m)
  82. {
  83.    EncState *st;
  84.    const SpeexNBMode *mode;
  85.    int i;
  86.    mode=(const SpeexNBMode *)m->mode;
  87.    st = (EncState*)speex_alloc(sizeof(EncState));
  88.    if (!st)
  89.       return NULL;
  90. #if defined(VAR_ARRAYS) || defined (USE_ALLOCA)
  91.    st->stack = NULL;
  92. #else
  93.    st->stack = (char*)speex_alloc_scratch(NB_ENC_STACK);
  94. #endif
  95.    
  96.    st->mode=m;
  97.    st->frameSize = mode->frameSize;
  98.    st->windowSize = st->frameSize*3/2;
  99.    st->nbSubframes=mode->frameSize/mode->subframeSize;
  100.    st->subframeSize=mode->subframeSize;
  101.    st->lpcSize = mode->lpcSize;
  102.    st->gamma1=mode->gamma1;
  103.    st->gamma2=mode->gamma2;
  104.    st->min_pitch=mode->pitchStart;
  105.    st->max_pitch=mode->pitchEnd;
  106.    st->lag_factor=mode->lag_factor;
  107.    st->lpc_floor = mode->lpc_floor;
  108.   
  109.    st->submodes=mode->submodes;
  110.    st->submodeID=st->submodeSelect=mode->defaultSubmode;
  111.    st->bounded_pitch = 1;
  112.    st->encode_submode = 1;
  113. #ifdef EPIC_48K
  114.    st->lbr_48k=mode->lbr48k;
  115. #endif
  116.    /* Allocating input buffer */
  117.    st->inBuf = speex_alloc((st->windowSize)*sizeof(spx_sig_t));
  118.    st->frame = st->inBuf;
  119.    /* Allocating excitation buffer */
  120.    st->excBuf = speex_alloc((mode->frameSize+mode->pitchEnd+1)*sizeof(spx_sig_t));
  121.    st->exc = st->excBuf + mode->pitchEnd + 1;
  122.    st->swBuf = speex_alloc((mode->frameSize+mode->pitchEnd+1)*sizeof(spx_sig_t));
  123.    st->sw = st->swBuf + mode->pitchEnd + 1;
  124.    st->innov = speex_alloc((st->frameSize)*sizeof(spx_sig_t));
  125.    /* Asymmetric "pseudo-Hamming" window */
  126.    {
  127.       int part1, part2;
  128.       part1=st->frameSize - (st->subframeSize>>1);
  129.       part2=(st->frameSize>>1) + (st->subframeSize>>1);
  130.       st->window = speex_alloc((st->windowSize)*sizeof(spx_word16_t));
  131.       for (i=0;i<part1;i++)
  132.          st->window[i]=(spx_word16_t)(SIG_SCALING*(.54-.46*cos(M_PI*i/part1)));
  133.       for (i=0;i<part2;i++)
  134.          st->window[part1+i]=(spx_word16_t)(SIG_SCALING*(.54+.46*cos(M_PI*i/part2)));
  135.    }
  136.    /* Create the window for autocorrelation (lag-windowing) */
  137.    st->lagWindow = speex_alloc((st->lpcSize+1)*sizeof(spx_word16_t));
  138.    for (i=0;i<st->lpcSize+1;i++)
  139.       st->lagWindow[i]=16384*exp(-.5*sqr(2*M_PI*st->lag_factor*i));
  140.    st->autocorr = speex_alloc((st->lpcSize+1)*sizeof(spx_word16_t));
  141.    st->lpc = speex_alloc((st->lpcSize)*sizeof(spx_coef_t));
  142.    st->interp_lpc = speex_alloc((st->lpcSize)*sizeof(spx_coef_t));
  143.    st->interp_qlpc = speex_alloc((st->lpcSize)*sizeof(spx_coef_t));
  144.    st->bw_lpc1 = speex_alloc((st->lpcSize)*sizeof(spx_coef_t));
  145.    st->bw_lpc2 = speex_alloc((st->lpcSize)*sizeof(spx_coef_t));
  146.    st->lsp = speex_alloc((st->lpcSize)*sizeof(spx_lsp_t));
  147.    st->qlsp = speex_alloc((st->lpcSize)*sizeof(spx_lsp_t));
  148.    st->old_lsp = speex_alloc((st->lpcSize)*sizeof(spx_lsp_t));
  149.    st->old_qlsp = speex_alloc((st->lpcSize)*sizeof(spx_lsp_t));
  150.    st->interp_lsp = speex_alloc((st->lpcSize)*sizeof(spx_lsp_t));
  151.    st->interp_qlsp = speex_alloc((st->lpcSize)*sizeof(spx_lsp_t));
  152.    st->first = 1;
  153.    for (i=0;i<st->lpcSize;i++)
  154.    {
  155.       st->lsp[i]=LSP_SCALING*(M_PI*((float)(i+1)))/(st->lpcSize+1);
  156.    }
  157.    st->mem_sp = speex_alloc((st->lpcSize)*sizeof(spx_mem_t));
  158.    st->mem_sw = speex_alloc((st->lpcSize)*sizeof(spx_mem_t));
  159.    st->mem_sw_whole = speex_alloc((st->lpcSize)*sizeof(spx_mem_t));
  160.    st->mem_exc = speex_alloc((st->lpcSize)*sizeof(spx_mem_t));
  161.    st->pi_gain = speex_alloc((st->nbSubframes)*sizeof(spx_word32_t));
  162.    st->pitch = speex_alloc((st->nbSubframes)*sizeof(int));
  163.    st->vbr = speex_alloc(sizeof(VBRState));
  164.    vbr_init(st->vbr);
  165.    st->vbr_quality = 8;
  166.    st->vbr_enabled = 0;
  167.    st->vad_enabled = 0;
  168.    st->dtx_enabled = 0;
  169.    st->abr_enabled = 0;
  170.    st->abr_drift = 0;
  171.    st->plc_tuning = 2;
  172.    st->complexity=2;
  173.    st->sampling_rate=8000;
  174.    st->dtx_count=0;
  175. #ifdef ENABLE_VALGRIND
  176.    VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st));
  177. #endif
  178.    return st;
  179. }
  180. void nb_encoder_destroy(void *state)
  181. {
  182.    EncState *st=(EncState *)state;
  183.    /* Free all allocated memory */
  184. #if !(defined(VAR_ARRAYS) || defined (USE_ALLOCA))
  185.    speex_free_scratch(st->stack);
  186. #endif
  187.    speex_free (st->inBuf);
  188.    speex_free (st->excBuf);
  189.    speex_free (st->innov);
  190.    speex_free (st->interp_qlpc);
  191.    speex_free (st->qlsp);
  192.    speex_free (st->old_qlsp);
  193.    speex_free (st->interp_qlsp);
  194.    speex_free (st->swBuf);
  195.    speex_free (st->window);
  196.    speex_free (st->lagWindow);
  197.    speex_free (st->autocorr);
  198.    speex_free (st->lpc);
  199.    speex_free (st->lsp);
  200.    speex_free (st->interp_lpc);
  201.    speex_free (st->bw_lpc1);
  202.    speex_free (st->bw_lpc2);
  203.    speex_free (st->old_lsp);
  204.    speex_free (st->interp_lsp);
  205.    speex_free (st->mem_sp);
  206.    speex_free (st->mem_sw);
  207.    speex_free (st->mem_sw_whole);
  208.    speex_free (st->mem_exc);
  209.    speex_free (st->pi_gain);
  210.    speex_free (st->pitch);
  211.    vbr_destroy(st->vbr);
  212.    speex_free (st->vbr);
  213.    /*Free state memory... should be last*/
  214.    speex_free(st);
  215. }
  216. int nb_encode(void *state, void *vin, SpeexBits *bits)
  217. {
  218.    EncState *st;
  219.    int i, sub, roots;
  220.    int ol_pitch;
  221.    spx_word16_t ol_pitch_coef;
  222.    spx_word32_t ol_gain;
  223.    VARDECL(spx_sig_t *res);
  224.    VARDECL(spx_sig_t *target);
  225.    VARDECL(spx_mem_t *mem);
  226.    char *stack;
  227.    VARDECL(spx_word16_t *syn_resp);
  228.    VARDECL(spx_sig_t *real_exc);
  229. #ifdef EPIC_48K
  230.    int pitch_half[2];
  231.    int ol_pitch_id=0;
  232. #endif
  233.    spx_word16_t *in = vin;
  234.    st=(EncState *)state;
  235.    stack=st->stack;
  236.    /* Copy new data in input buffer */
  237.    speex_move(st->inBuf, st->inBuf+st->frameSize, (st->windowSize-st->frameSize)*sizeof(spx_sig_t));
  238.    for (i=0;i<st->frameSize;i++)
  239.       st->inBuf[st->windowSize-st->frameSize+i] = SHL32(EXTEND32(in[i]), SIG_SHIFT);
  240.    /* Move signals 1 frame towards the past */
  241.    speex_move(st->excBuf, st->excBuf+st->frameSize, (st->max_pitch+1)*sizeof(spx_sig_t));
  242.    speex_move(st->swBuf, st->swBuf+st->frameSize, (st->max_pitch+1)*sizeof(spx_sig_t));
  243.    {
  244.       VARDECL(spx_word16_t *w_sig);
  245.       ALLOC(w_sig, st->windowSize, spx_word16_t);
  246.       /* Window for analysis */
  247.       for (i=0;i<st->windowSize;i++)
  248.          w_sig[i] = EXTRACT16(SHR32(MULT16_16(EXTRACT16(SHR32(st->frame[i],SIG_SHIFT)),st->window[i]),SIG_SHIFT));
  249.       /* Compute auto-correlation */
  250.       _spx_autocorr(w_sig, st->autocorr, st->lpcSize+1, st->windowSize);
  251.    }
  252.    st->autocorr[0] = (spx_word16_t) (st->autocorr[0]*st->lpc_floor); /* Noise floor in auto-correlation domain */
  253.    /* Lag windowing: equivalent to filtering in the power-spectrum domain */
  254.    for (i=0;i<st->lpcSize+1;i++)
  255.       st->autocorr[i] = MULT16_16_Q14(st->autocorr[i],st->lagWindow[i]);
  256.    /* Levinson-Durbin */
  257.    _spx_lpc(st->lpc, st->autocorr, st->lpcSize);
  258.    /* LPC to LSPs (x-domain) transform */
  259.    roots=lpc_to_lsp (st->lpc, st->lpcSize, st->lsp, 15, LSP_DELTA1, stack);
  260.    /* Check if we found all the roots */
  261.    if (roots!=st->lpcSize)
  262.    {
  263.       /* Search again if we can afford it */
  264.       if (st->complexity>1)
  265.          roots = lpc_to_lsp (st->lpc, st->lpcSize, st->lsp, 11, LSP_DELTA2, stack);
  266.       if (roots!=st->lpcSize) 
  267.       {
  268.          /*If we can't find all LSP's, do some damage control and use previous filter*/
  269.          for (i=0;i<st->lpcSize;i++)
  270.          {
  271.             st->lsp[i]=st->old_lsp[i];
  272.          }
  273.       }
  274.    }
  275.    /* Whole frame analysis (open-loop estimation of pitch and excitation gain) */
  276.    {
  277.       if (st->first)
  278.          for (i=0;i<st->lpcSize;i++)
  279.             st->interp_lsp[i] = st->lsp[i];
  280.       else
  281.          lsp_interpolate(st->old_lsp, st->lsp, st->interp_lsp, st->lpcSize, st->nbSubframes, st->nbSubframes<<1);
  282.       lsp_enforce_margin(st->interp_lsp, st->lpcSize, LSP_MARGIN);
  283.       /* Compute interpolated LPCs (unquantized) for whole frame*/
  284.       lsp_to_lpc(st->interp_lsp, st->interp_lpc, st->lpcSize,stack);
  285.       /*Open-loop pitch*/
  286.       if (!st->submodes[st->submodeID] || st->vbr_enabled || st->vad_enabled || SUBMODE(forced_pitch_gain) ||
  287.           SUBMODE(lbr_pitch) != -1)
  288.       {
  289.          int nol_pitch[6];
  290.          spx_word16_t nol_pitch_coef[6];
  291.          
  292.          bw_lpc(st->gamma1, st->interp_lpc, st->bw_lpc1, st->lpcSize);
  293.          bw_lpc(st->gamma2, st->interp_lpc, st->bw_lpc2, st->lpcSize);
  294.          
  295.          filter_mem2(st->frame, st->bw_lpc1, st->bw_lpc2, st->sw, st->frameSize, st->lpcSize, st->mem_sw_whole);
  296.          open_loop_nbest_pitch(st->sw, st->min_pitch, st->max_pitch, st->frameSize, 
  297.                                nol_pitch, nol_pitch_coef, 6, stack);
  298.          ol_pitch=nol_pitch[0];
  299.          ol_pitch_coef = nol_pitch_coef[0];
  300.          /*Try to remove pitch multiples*/
  301.          for (i=1;i<6;i++)
  302.          {
  303. #ifdef FIXED_POINT
  304.             if ((nol_pitch_coef[i]>MULT16_16_Q15(nol_pitch_coef[0],27853)) && 
  305. #else
  306.             if ((nol_pitch_coef[i]>.85*nol_pitch_coef[0]) && 
  307. #endif
  308.                 (ABS(2*nol_pitch[i]-ol_pitch)<=2 || ABS(3*nol_pitch[i]-ol_pitch)<=3 || 
  309.                  ABS(4*nol_pitch[i]-ol_pitch)<=4 || ABS(5*nol_pitch[i]-ol_pitch)<=5))
  310.             {
  311.                /*ol_pitch_coef=nol_pitch_coef[i];*/
  312.                ol_pitch = nol_pitch[i];
  313.             }
  314.          }
  315.          /*if (ol_pitch>50)
  316.            ol_pitch/=2;*/
  317.          /*ol_pitch_coef = sqrt(ol_pitch_coef);*/
  318. #ifdef EPIC_48K
  319.          if (st->lbr_48k)
  320.          {
  321.             if (ol_pitch < st->min_pitch+2)
  322.                ol_pitch = st->min_pitch+2;
  323.             if (ol_pitch > st->max_pitch-2)
  324.                ol_pitch = st->max_pitch-2;
  325.             open_loop_nbest_pitch(st->sw, ol_pitch-2, ol_pitch+2, st->frameSize>>1, 
  326.                                   &pitch_half[0], nol_pitch_coef, 1, stack);
  327.             open_loop_nbest_pitch(st->sw+(st->frameSize>>1), pitch_half[0]-1, pitch_half[0]+2, st->frameSize>>1, 
  328.                                   &pitch_half[1], nol_pitch_coef, 1, stack);
  329.          }
  330. #endif
  331.       } else {
  332.          ol_pitch=0;
  333.          ol_pitch_coef=0;
  334.       }
  335.       /*Compute "real" excitation*/
  336.       fir_mem2(st->frame, st->interp_lpc, st->exc, st->frameSize, st->lpcSize, st->mem_exc);
  337.       /* Compute open-loop excitation gain */
  338. #ifdef EPIC_48K
  339.       if (st->lbr_48k)
  340.       {
  341.          float ol1=0,ol2=0;
  342.          float ol_gain2;
  343.          ol1 = compute_rms(st->exc, st->frameSize>>1);
  344.          ol2 = compute_rms(st->exc+(st->frameSize>>1), st->frameSize>>1);
  345.          ol1 *= ol1*(st->frameSize>>1);
  346.          ol2 *= ol2*(st->frameSize>>1);
  347.          ol_gain2=ol1;
  348.          if (ol2>ol1)
  349.             ol_gain2=ol2;
  350.          ol_gain2 = sqrt(2*ol_gain2*(ol1+ol2))*1.3*(1-.5*GAIN_SCALING_1*GAIN_SCALING_1*ol_pitch_coef*ol_pitch_coef);
  351.       
  352.          ol_gain=SHR(sqrt(1+ol_gain2/st->frameSize),SIG_SHIFT);
  353.       } else {
  354. #endif
  355.          ol_gain = SHL32(EXTEND32(compute_rms(st->exc, st->frameSize)),SIG_SHIFT);
  356. #ifdef EPIC_48K
  357.       }
  358. #endif
  359.    }
  360.    /*VBR stuff*/
  361.    if (st->vbr && (st->vbr_enabled||st->vad_enabled))
  362.    {
  363.       float lsp_dist=0;
  364.       for (i=0;i<st->lpcSize;i++)
  365.          lsp_dist += (st->old_lsp[i] - st->lsp[i])*(st->old_lsp[i] - st->lsp[i]);
  366.       lsp_dist /= LSP_SCALING*LSP_SCALING;
  367.       
  368.       if (st->abr_enabled)
  369.       {
  370.          float qual_change=0;
  371.          if (st->abr_drift2 * st->abr_drift > 0)
  372.          {
  373.             /* Only adapt if long-term and short-term drift are the same sign */
  374.             qual_change = -.00001*st->abr_drift/(1+st->abr_count);
  375.             if (qual_change>.05)
  376.                qual_change=.05;
  377.             if (qual_change<-.05)
  378.                qual_change=-.05;
  379.          }
  380.          st->vbr_quality += qual_change;
  381.          if (st->vbr_quality>10)
  382.             st->vbr_quality=10;
  383.          if (st->vbr_quality<0)
  384.             st->vbr_quality=0;
  385.       }
  386.       st->relative_quality = vbr_analysis(st->vbr, in, st->frameSize, ol_pitch, GAIN_SCALING_1*ol_pitch_coef);
  387.       /*if (delta_qual<0)*/
  388.       /*  delta_qual*=.1*(3+st->vbr_quality);*/
  389.       if (st->vbr_enabled) 
  390.       {
  391.          int mode;
  392.          int choice=0;
  393.          float min_diff=100;
  394.          mode = 8;
  395.          while (mode)
  396.          {
  397.             int v1;
  398.             float thresh;
  399.             v1=(int)floor(st->vbr_quality);
  400.             if (v1==10)
  401.                thresh = vbr_nb_thresh[mode][v1];
  402.             else
  403.                thresh = (st->vbr_quality-v1)*vbr_nb_thresh[mode][v1+1] + (1+v1-st->vbr_quality)*vbr_nb_thresh[mode][v1];
  404.             if (st->relative_quality > thresh && 
  405.                 st->relative_quality-thresh<min_diff)
  406.             {
  407.                choice = mode;
  408.                min_diff = st->relative_quality-thresh;
  409.             }
  410.             mode--;
  411.          }
  412.          mode=choice;
  413.          if (mode==0)
  414.          {
  415.             if (st->dtx_count==0 || lsp_dist>.05 || !st->dtx_enabled || st->dtx_count>20)
  416.             {
  417.                mode=1;
  418.                st->dtx_count=1;
  419.             } else {
  420.                mode=0;
  421.                st->dtx_count++;
  422.             }
  423.          } else {
  424.             st->dtx_count=0;
  425.          }
  426.          speex_encoder_ctl(state, SPEEX_SET_MODE, &mode);
  427.          if (st->abr_enabled)
  428.          {
  429.             int bitrate;
  430.             speex_encoder_ctl(state, SPEEX_GET_BITRATE, &bitrate);
  431.             st->abr_drift+=(bitrate-st->abr_enabled);
  432.             st->abr_drift2 = .95*st->abr_drift2 + .05*(bitrate-st->abr_enabled);
  433.             st->abr_count += 1.0;
  434.          }
  435.       } else {
  436.          /*VAD only case*/
  437.          int mode;
  438.          if (st->relative_quality<2)
  439.          {
  440.             if (st->dtx_count==0 || lsp_dist>.05 || !st->dtx_enabled || st->dtx_count>20)
  441.             {
  442.                st->dtx_count=1;
  443.                mode=1;
  444.             } else {
  445.                mode=0;
  446.                st->dtx_count++;
  447.             }
  448.          } else {
  449.             st->dtx_count = 0;
  450.             mode=st->submodeSelect;
  451.          }
  452.          /*speex_encoder_ctl(state, SPEEX_SET_MODE, &mode);*/
  453.          st->submodeID=mode;
  454.       } 
  455.    } else {
  456.       st->relative_quality = -1;
  457.    }
  458.    if (st->encode_submode)
  459.    {
  460. #ifdef EPIC_48K
  461.    if (!st->lbr_48k) {
  462. #endif
  463.    /* First, transmit a zero for narrowband */
  464.    speex_bits_pack(bits, 0, 1);
  465.    /* Transmit the sub-mode we use for this frame */
  466.    speex_bits_pack(bits, st->submodeID, NB_SUBMODE_BITS);
  467. #ifdef EPIC_48K
  468.    }
  469. #endif
  470.    }
  471.    /* If null mode (no transmission), just set a couple things to zero*/
  472.    if (st->submodes[st->submodeID] == NULL)
  473.    {
  474.       for (i=0;i<st->frameSize;i++)
  475.          st->exc[i]=st->sw[i]=VERY_SMALL;
  476.       for (i=0;i<st->lpcSize;i++)
  477.          st->mem_sw[i]=0;
  478.       st->first=1;
  479.       st->bounded_pitch = 1;
  480.       /* Final signal synthesis from excitation */
  481.       iir_mem2(st->exc, st->interp_qlpc, st->frame, st->frameSize, st->lpcSize, st->mem_sp);
  482. #ifdef RESYNTH
  483.       for (i=0;i<st->frameSize;i++)
  484.          in[i]=st->frame[i];
  485. #endif
  486.       return 0;
  487.    }
  488.    /* LSP Quantization */
  489.    if (st->first)
  490.    {
  491.       for (i=0;i<st->lpcSize;i++)
  492.          st->old_lsp[i] = st->lsp[i];
  493.    }
  494.    /*Quantize LSPs*/
  495. #if 1 /*0 for unquantized*/
  496.    SUBMODE(lsp_quant)(st->lsp, st->qlsp, st->lpcSize, bits);
  497. #else
  498.    for (i=0;i<st->lpcSize;i++)
  499.      st->qlsp[i]=st->lsp[i];
  500. #endif
  501. #ifdef EPIC_48K
  502.    if (st->lbr_48k) {
  503.       speex_bits_pack(bits, pitch_half[0]-st->min_pitch, 7);
  504.       speex_bits_pack(bits, pitch_half[1]-pitch_half[0]+1, 2);
  505.       
  506.       {
  507.          int quant = (int)floor(.5+7.4*GAIN_SCALING_1*ol_pitch_coef);
  508.          if (quant>7)
  509.             quant=7;
  510.          if (quant<0)
  511.             quant=0;
  512.          ol_pitch_id=quant;
  513.          speex_bits_pack(bits, quant, 3);
  514.          ol_pitch_coef=GAIN_SCALING*0.13514*quant;
  515.          
  516.       }
  517.       {
  518.          int qe = (int)(floor(.5+2.1*log(ol_gain*1.0/SIG_SCALING)))-2;
  519.          if (qe<0)
  520.             qe=0;
  521.          if (qe>15)
  522.             qe=15;
  523.          ol_gain = exp((qe+2)/2.1)*SIG_SCALING;
  524.          speex_bits_pack(bits, qe, 4);
  525.       }
  526.    } else {
  527. #endif
  528.    /*If we use low bit-rate pitch mode, transmit open-loop pitch*/
  529.    if (SUBMODE(lbr_pitch)!=-1)
  530.    {
  531.       speex_bits_pack(bits, ol_pitch-st->min_pitch, 7);
  532.    } 
  533.    if (SUBMODE(forced_pitch_gain))
  534.    {
  535.       int quant;
  536.       quant = (int)floor(.5+15*ol_pitch_coef*GAIN_SCALING_1);
  537.       if (quant>15)
  538.          quant=15;
  539.       if (quant<0)
  540.          quant=0;
  541.       speex_bits_pack(bits, quant, 4);
  542.       ol_pitch_coef=GAIN_SCALING*0.066667*quant;
  543.    }
  544.    
  545.    
  546.    /*Quantize and transmit open-loop excitation gain*/
  547. #ifdef FIXED_POINT
  548.    {
  549.       int qe = scal_quant32(ol_gain, ol_gain_table, 32);
  550.       /*ol_gain = exp(qe/3.5)*SIG_SCALING;*/
  551.       ol_gain = MULT16_32_Q15(28406,ol_gain_table[qe]);
  552.       speex_bits_pack(bits, qe, 5);
  553.    }
  554. #else
  555.    {
  556.       int qe = (int)(floor(.5+3.5*log(ol_gain*1.0/SIG_SCALING)));
  557.       if (qe<0)
  558.          qe=0;
  559.       if (qe>31)
  560.          qe=31;
  561.       ol_gain = exp(qe/3.5)*SIG_SCALING;
  562.       speex_bits_pack(bits, qe, 5);
  563.    }
  564. #endif
  565. #ifdef EPIC_48K
  566.    }
  567. #endif
  568.    /* Special case for first frame */
  569.    if (st->first)
  570.    {
  571.       for (i=0;i<st->lpcSize;i++)
  572.          st->old_qlsp[i] = st->qlsp[i];
  573.    }
  574.    /* Filter response */
  575.    ALLOC(res, st->subframeSize, spx_sig_t);
  576.    /* Target signal */
  577.    ALLOC(target, st->subframeSize, spx_sig_t);
  578.    ALLOC(syn_resp, st->subframeSize, spx_word16_t);
  579.    ALLOC(real_exc, st->subframeSize, spx_sig_t);
  580.    ALLOC(mem, st->lpcSize, spx_mem_t);
  581.    /* Loop on sub-frames */
  582.    for (sub=0;sub<st->nbSubframes;sub++)
  583.    {
  584.       int   offset;
  585.       spx_sig_t *sp, *sw, *exc;
  586.       int pitch;
  587.       int response_bound = st->subframeSize;
  588. #ifdef EPIC_48K
  589.       if (st->lbr_48k)
  590.       {
  591.          if (sub*2 < st->nbSubframes)
  592.             ol_pitch = pitch_half[0];
  593.          else
  594.             ol_pitch = pitch_half[1];
  595.       }
  596. #endif
  597.       /* Offset relative to start of frame */
  598.       offset = st->subframeSize*sub;
  599.       /* Original signal */
  600.       sp=st->frame+offset;
  601.       /* Excitation */
  602.       exc=st->exc+offset;
  603.       /* Weighted signal */
  604.       sw=st->sw+offset;
  605.       /* LSP interpolation (quantized and unquantized) */
  606.       lsp_interpolate(st->old_lsp, st->lsp, st->interp_lsp, st->lpcSize, sub, st->nbSubframes);
  607.       lsp_interpolate(st->old_qlsp, st->qlsp, st->interp_qlsp, st->lpcSize, sub, st->nbSubframes);
  608.       /* Make sure the filters are stable */
  609.       lsp_enforce_margin(st->interp_lsp, st->lpcSize, LSP_MARGIN);
  610.       lsp_enforce_margin(st->interp_qlsp, st->lpcSize, LSP_MARGIN);
  611.       /* Compute interpolated LPCs (quantized and unquantized) */
  612.       lsp_to_lpc(st->interp_lsp, st->interp_lpc, st->lpcSize,stack);
  613.       lsp_to_lpc(st->interp_qlsp, st->interp_qlpc, st->lpcSize, stack);
  614.       /* Compute analysis filter gain at w=pi (for use in SB-CELP) */
  615.       {
  616.          spx_word32_t pi_g=LPC_SCALING;
  617.          for (i=0;i<st->lpcSize;i+=2)
  618.          {
  619.             /*pi_g += -st->interp_qlpc[i] +  st->interp_qlpc[i+1];*/
  620.             pi_g = ADD32(pi_g, SUB32(st->interp_qlpc[i+1],st->interp_qlpc[i]));
  621.          }
  622.          st->pi_gain[sub] = pi_g;
  623.       }
  624.       /* Compute bandwidth-expanded (unquantized) LPCs for perceptual weighting */
  625.       bw_lpc(st->gamma1, st->interp_lpc, st->bw_lpc1, st->lpcSize);
  626.       if (st->gamma2>=0)
  627.          bw_lpc(st->gamma2, st->interp_lpc, st->bw_lpc2, st->lpcSize);
  628.       else
  629.       {
  630.          st->bw_lpc2[0]=1;
  631.          for (i=1;i<=st->lpcSize;i++)
  632.             st->bw_lpc2[i]=0;
  633.       }
  634.       for (i=0;i<st->subframeSize;i++)
  635.          real_exc[i] = exc[i];
  636.       
  637.       if (st->complexity==0)
  638.          response_bound >>= 1;
  639.       compute_impulse_response(st->interp_qlpc, st->bw_lpc1, st->bw_lpc2, syn_resp, response_bound, st->lpcSize, stack);
  640.       for (i=response_bound;i<st->subframeSize;i++)
  641.          syn_resp[i]=VERY_SMALL;
  642.       
  643.       /* Reset excitation */
  644.       for (i=0;i<st->subframeSize;i++)
  645.          exc[i]=VERY_SMALL;
  646.       /* Compute zero response of A(z/g1) / ( A(z/g2) * A(z) ) */
  647.       for (i=0;i<st->lpcSize;i++)
  648.          mem[i]=st->mem_sp[i];
  649. #ifdef SHORTCUTS2
  650.       iir_mem2(exc, st->interp_qlpc, exc, response_bound, st->lpcSize, mem);
  651.       for (i=0;i<st->lpcSize;i++)
  652.          mem[i]=st->mem_sw[i];
  653.       filter_mem2(exc, st->bw_lpc1, st->bw_lpc2, res, response_bound, st->lpcSize, mem);
  654.       for (i=response_bound;i<st->subframeSize;i++)
  655.          res[i]=0;
  656. #else
  657.       iir_mem2(exc, st->interp_qlpc, exc, st->subframeSize, st->lpcSize, mem);
  658.       for (i=0;i<st->lpcSize;i++)
  659.          mem[i]=st->mem_sw[i];
  660.       filter_mem2(exc, st->bw_lpc1, st->bw_lpc2, res, st->subframeSize, st->lpcSize, mem);
  661. #endif
  662.       
  663.       /* Compute weighted signal */
  664.       for (i=0;i<st->lpcSize;i++)
  665.          mem[i]=st->mem_sw[i];
  666.       filter_mem2(sp, st->bw_lpc1, st->bw_lpc2, sw, st->subframeSize, st->lpcSize, mem);
  667.       
  668.       if (st->complexity==0)
  669.          for (i=0;i<st->lpcSize;i++)
  670.             st->mem_sw[i]=mem[i];
  671.       
  672.       /* Compute target signal */
  673.       for (i=0;i<st->subframeSize;i++)
  674.          target[i]=sw[i]-res[i];
  675.       for (i=0;i<st->subframeSize;i++)
  676.          exc[i]=0;
  677.       /* If we have a long-term predictor (otherwise, something's wrong) */
  678.       if (SUBMODE(ltp_quant))
  679.       {
  680.          int pit_min, pit_max;
  681.          /* Long-term prediction */
  682.          if (SUBMODE(lbr_pitch) != -1)
  683.          {
  684.             /* Low bit-rate pitch handling */
  685.             int margin;
  686.             margin = SUBMODE(lbr_pitch);
  687.             if (margin)
  688.             {
  689.                if (ol_pitch < st->min_pitch+margin-1)
  690.                   ol_pitch=st->min_pitch+margin-1;
  691.                if (ol_pitch > st->max_pitch-margin)
  692.                   ol_pitch=st->max_pitch-margin;
  693.                pit_min = ol_pitch-margin+1;
  694.                pit_max = ol_pitch+margin;
  695.             } else {
  696.                pit_min=pit_max=ol_pitch;
  697.             }
  698.          } else {
  699.             pit_min = st->min_pitch;
  700.             pit_max = st->max_pitch;
  701.          }
  702.          
  703.          /* Force pitch to use only the current frame if needed */
  704.          if (st->bounded_pitch && pit_max>offset)
  705.             pit_max=offset;
  706. #ifdef EPIC_48K
  707.          if (st->lbr_48k)
  708.          {
  709.             pitch = SUBMODE(ltp_quant)(target, sw, st->interp_qlpc, st->bw_lpc1, st->bw_lpc2,
  710.                                        exc, SUBMODE(ltp_params), pit_min, pit_max, ol_pitch_coef,
  711.                                        st->lpcSize, st->subframeSize, bits, stack, 
  712.                                        exc, syn_resp, st->complexity, ol_pitch_id, st->plc_tuning);
  713.          } else {
  714. #endif
  715.          /* Perform pitch search */
  716.          pitch = SUBMODE(ltp_quant)(target, sw, st->interp_qlpc, st->bw_lpc1, st->bw_lpc2,
  717.                                     exc, SUBMODE(ltp_params), pit_min, pit_max, ol_pitch_coef,
  718.                                     st->lpcSize, st->subframeSize, bits, stack, 
  719.                                     exc, syn_resp, st->complexity, 0, st->plc_tuning);
  720. #ifdef EPIC_48K
  721.          }
  722. #endif
  723.          st->pitch[sub]=pitch;
  724.       } else {
  725.          speex_error ("No pitch prediction, what's wrong");
  726.       }
  727.       /* Quantization of innovation */
  728.       {
  729.          spx_sig_t *innov;
  730.          spx_word32_t ener=0;
  731.          spx_word16_t fine_gain;
  732.          innov = st->innov+sub*st->subframeSize;
  733.          for (i=0;i<st->subframeSize;i++)
  734.             innov[i]=0;
  735.          
  736.          for (i=0;i<st->subframeSize;i++)
  737.             real_exc[i] = SUB32(real_exc[i], exc[i]);
  738.          ener = SHL32(EXTEND32(compute_rms(real_exc, st->subframeSize)),SIG_SHIFT);
  739.          
  740.          /*FIXME: Should use DIV32_16 and make sure result fits in 16 bits */
  741. #ifdef FIXED_POINT
  742.          {
  743.             spx_word32_t f = DIV32(ener,PSHR32(ol_gain,SIG_SHIFT));
  744.             if (f<=32767)
  745.                fine_gain = f;
  746.             else
  747.                fine_gain = 32767;
  748.          }
  749. #else
  750.          fine_gain = DIV32_16(ener,PSHR32(ol_gain,SIG_SHIFT));
  751. #endif
  752.          /* Calculate gain correction for the sub-frame (if any) */
  753.          if (SUBMODE(have_subframe_gain)) 
  754.          {
  755.             int qe;
  756.             if (SUBMODE(have_subframe_gain)==3)
  757.             {
  758.                qe = scal_quant(fine_gain, exc_gain_quant_scal3_bound, 8);
  759.                speex_bits_pack(bits, qe, 3);
  760.                ener=MULT16_32_Q14(exc_gain_quant_scal3[qe],ol_gain);
  761.             } else {
  762.                qe = scal_quant(fine_gain, exc_gain_quant_scal1_bound, 2);
  763.                speex_bits_pack(bits, qe, 1);
  764.                ener=MULT16_32_Q14(exc_gain_quant_scal1[qe],ol_gain);               
  765.             }
  766.          } else {
  767.             ener=ol_gain;
  768.          }
  769.          /*printf ("%f %fn", ener, ol_gain);*/
  770.          /* Normalize innovation */
  771.          signal_div(target, target, ener, st->subframeSize);
  772.          /* Quantize innovation */
  773.          if (SUBMODE(innovation_quant))
  774.          {
  775.             /* Codebook search */
  776.             SUBMODE(innovation_quant)(target, st->interp_qlpc, st->bw_lpc1, st->bw_lpc2, 
  777.                                       SUBMODE(innovation_params), st->lpcSize, st->subframeSize, 
  778.                                       innov, syn_resp, bits, stack, st->complexity, SUBMODE(double_codebook));
  779.             
  780.             /* De-normalize innovation and update excitation */
  781.             signal_mul(innov, innov, ener, st->subframeSize);
  782.             for (i=0;i<st->subframeSize;i++)
  783.                exc[i] = ADD32(exc[i],innov[i]);
  784.          } else {
  785.             speex_error("No fixed codebook");
  786.          }
  787.          /* In some (rare) modes, we do a second search (more bits) to reduce noise even more */
  788.          if (SUBMODE(double_codebook)) {
  789.             char *tmp_stack=stack;
  790.             VARDECL(spx_sig_t *innov2);
  791.             ALLOC(innov2, st->subframeSize, spx_sig_t);
  792.             for (i=0;i<st->subframeSize;i++)
  793.                innov2[i]=0;
  794.             for (i=0;i<st->subframeSize;i++)
  795.                target[i]*=2.2;
  796.             SUBMODE(innovation_quant)(target, st->interp_qlpc, st->bw_lpc1, st->bw_lpc2, 
  797.                                       SUBMODE(innovation_params), st->lpcSize, st->subframeSize, 
  798.                                       innov2, syn_resp, bits, stack, st->complexity, 0);
  799.             signal_mul(innov2, innov2, (spx_word32_t) (ener*(1/2.2)), st->subframeSize);
  800.             for (i=0;i<st->subframeSize;i++)
  801.                exc[i] = ADD32(exc[i],innov2[i]);
  802.             stack = tmp_stack;
  803.          }
  804.       }
  805.       /* Final signal synthesis from excitation */
  806.       iir_mem2(exc, st->interp_qlpc, sp, st->subframeSize, st->lpcSize, st->mem_sp);
  807.       /* Compute weighted signal again, from synthesized speech (not sure it's the right thing) */
  808.       if (st->complexity!=0)
  809.          filter_mem2(sp, st->bw_lpc1, st->bw_lpc2, sw, st->subframeSize, st->lpcSize, st->mem_sw);
  810.       
  811.    }
  812.    /* Store the LSPs for interpolation in the next frame */
  813.    if (st->submodeID>=1)
  814.    {
  815.       for (i=0;i<st->lpcSize;i++)
  816.          st->old_lsp[i] = st->lsp[i];
  817.       for (i=0;i<st->lpcSize;i++)
  818.          st->old_qlsp[i] = st->qlsp[i];
  819.    }
  820.    if (st->submodeID==1)
  821.    {
  822.       if (st->dtx_count)
  823.          speex_bits_pack(bits, 15, 4);
  824.       else
  825.          speex_bits_pack(bits, 0, 4);
  826.    }
  827.    /* The next frame will not be the first (Duh!) */
  828.    st->first = 0;
  829. #ifdef RESYNTH
  830.    /* Replace input by synthesized speech */
  831.    for (i=0;i<st->frameSize;i++)
  832.    {
  833.       spx_word32_t sig = PSHR32(st->frame[i],SIG_SHIFT);
  834.       if (sig>32767)
  835.          sig = 32767;
  836.       if (sig<-32767)
  837.          sig = -32767;
  838.      in[i]=sig;
  839.    }
  840. #endif
  841.    if (SUBMODE(innovation_quant) == noise_codebook_quant || st->submodeID==0)
  842.       st->bounded_pitch = 1;
  843.    else
  844.       st->bounded_pitch = 0;
  845.    return 1;
  846. }
  847. void *nb_decoder_init(const SpeexMode *m)
  848. {
  849.    DecState *st;
  850.    const SpeexNBMode *mode;
  851.    int i;
  852.    mode=(const SpeexNBMode*)m->mode;
  853.    st = (DecState *)speex_alloc(sizeof(DecState));
  854.    if (!st)
  855.       return NULL;
  856. #if defined(VAR_ARRAYS) || defined (USE_ALLOCA)
  857.    st->stack = NULL;
  858. #else
  859.    st->stack = (char*)speex_alloc_scratch(NB_DEC_STACK);
  860. #endif
  861.    st->mode=m;
  862.    st->encode_submode = 1;
  863. #ifdef EPIC_48K
  864.    st->lbr_48k=mode->lbr48k;
  865. #endif
  866.    st->first=1;
  867.    /* Codec parameters, should eventually have several "modes"*/
  868.    st->frameSize = mode->frameSize;
  869.    st->nbSubframes=mode->frameSize/mode->subframeSize;
  870.    st->subframeSize=mode->subframeSize;
  871.    st->lpcSize = mode->lpcSize;
  872.    st->min_pitch=mode->pitchStart;
  873.    st->max_pitch=mode->pitchEnd;
  874.    st->submodes=mode->submodes;
  875.    st->submodeID=mode->defaultSubmode;
  876.    st->lpc_enh_enabled=0;
  877.    st->inBuf = speex_alloc((st->frameSize)*sizeof(spx_sig_t));
  878.    st->frame = st->inBuf;
  879.    st->excBuf = speex_alloc((st->frameSize + st->max_pitch + 1)*sizeof(spx_sig_t));
  880.    st->exc = st->excBuf + st->max_pitch + 1;
  881.    for (i=0;i<st->frameSize;i++)
  882.       st->inBuf[i]=0;
  883.    for (i=0;i<st->frameSize + st->max_pitch + 1;i++)
  884.       st->excBuf[i]=0;
  885.    st->innov = speex_alloc((st->frameSize)*sizeof(spx_sig_t));
  886.    st->interp_qlpc = speex_alloc(st->lpcSize*sizeof(spx_coef_t));
  887.    st->qlsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t));
  888.    st->old_qlsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t));
  889.    st->interp_qlsp = speex_alloc(st->lpcSize*sizeof(spx_lsp_t));
  890.    st->mem_sp = speex_alloc((5*st->lpcSize)*sizeof(spx_mem_t));
  891.    st->comb_mem = speex_alloc(sizeof(CombFilterMem));
  892.    comb_filter_mem_init (st->comb_mem);
  893.    st->pi_gain = speex_alloc((st->nbSubframes)*sizeof(spx_word32_t));
  894.    st->last_pitch = 40;
  895.    st->count_lost=0;
  896.    st->pitch_gain_buf[0] = st->pitch_gain_buf[1] = st->pitch_gain_buf[2] = 0;
  897.    st->pitch_gain_buf_idx = 0;
  898.    st->seed = 1000;
  899.    
  900.    st->sampling_rate=8000;
  901.    st->last_ol_gain = 0;
  902.    st->user_callback.func = &speex_default_user_handler;
  903.    st->user_callback.data = NULL;
  904.    for (i=0;i<16;i++)
  905.       st->speex_callbacks[i].func = NULL;
  906.    st->voc_m1=st->voc_m2=st->voc_mean=0;
  907.    st->voc_offset=0;
  908.    st->dtx_enabled=0;
  909. #ifdef ENABLE_VALGRIND
  910.    VALGRIND_MAKE_READABLE(st, (st->stack-(char*)st));
  911. #endif
  912.    return st;
  913. }
  914. void nb_decoder_destroy(void *state)
  915. {
  916.    DecState *st;
  917.    st=(DecState*)state;
  918.    
  919. #if !(defined(VAR_ARRAYS) || defined (USE_ALLOCA))
  920.    speex_free_scratch(st->stack);
  921. #endif
  922.    speex_free (st->inBuf);
  923.    speex_free (st->excBuf);
  924.    speex_free (st->innov);
  925.    speex_free (st->interp_qlpc);
  926.    speex_free (st->qlsp);
  927.    speex_free (st->old_qlsp);
  928.    speex_free (st->interp_qlsp);
  929.    speex_free (st->mem_sp);
  930.    speex_free (st->comb_mem);
  931.    speex_free (st->pi_gain);
  932.    speex_free(state);
  933. }
  934. #define median3(a, b, c) ((a) < (b) ? ((b) < (c) ? (b) : ((a) < (c) ? (c) : (a))) : ((c) < (b) ? (b) : ((c) < (a) ? (c) : (a))))
  935. #ifdef FIXED_POINT
  936. const spx_word16_t attenuation[10] = {32767, 31483, 27923, 22861, 17278, 12055, 7764, 4616, 2533, 1283};
  937. #else
  938. const spx_word16_t attenuation[10] = {1., 0.961, 0.852, 0.698, 0.527, 0.368, 0.237, 0.141, 0.077, 0.039};
  939. #endif
  940. static void nb_decode_lost(DecState *st, spx_word16_t *out, char *stack)
  941. {
  942.    int i, sub;
  943.    VARDECL(spx_coef_t *awk1);
  944.    VARDECL(spx_coef_t *awk2);
  945.    VARDECL(spx_coef_t *awk3);
  946.    spx_word16_t pitch_gain;
  947.    spx_word16_t fact;
  948.    spx_word16_t gain_med;
  949.    spx_word16_t innov_gain;
  950.    
  951.    if (st->count_lost<10)
  952.       fact = attenuation[st->count_lost];
  953.    else
  954.       fact = 0;
  955.    gain_med = median3(st->pitch_gain_buf[0], st->pitch_gain_buf[1], st->pitch_gain_buf[2]);
  956.    if (gain_med < st->last_pitch_gain)
  957.       st->last_pitch_gain = gain_med;
  958.    
  959. #ifdef FIXED_POINT
  960.    pitch_gain = st->last_pitch_gain;
  961.    if (pitch_gain>62)
  962.       pitch_gain = 62;
  963.    pitch_gain = SHL(pitch_gain, 9);
  964. #else   
  965.    pitch_gain = GAIN_SCALING_1*st->last_pitch_gain;
  966.    if (pitch_gain>.95)
  967.       pitch_gain=.95;
  968. #endif
  969.    pitch_gain = MULT16_16_Q15(fact,pitch_gain) + VERY_SMALL;
  970.    /* Shift all buffers by one frame */
  971.    /*speex_move(st->inBuf, st->inBuf+st->frameSize, (st->bufSize-st->frameSize)*sizeof(spx_sig_t));*/
  972.    speex_move(st->excBuf, st->excBuf+st->frameSize, (st->max_pitch + 1)*sizeof(spx_sig_t));
  973.    ALLOC(awk1, (st->lpcSize+1), spx_coef_t);
  974.    ALLOC(awk2, (st->lpcSize+1), spx_coef_t);
  975.    ALLOC(awk3, (st->lpcSize+1), spx_coef_t);
  976.    for (sub=0;sub<st->nbSubframes;sub++)
  977.    {
  978.       int offset;
  979.       spx_sig_t *sp, *exc;
  980.       /* Offset relative to start of frame */
  981.       offset = st->subframeSize*sub;
  982.       /* Original signal */
  983.       sp=st->frame+offset;
  984.       /* Excitation */
  985.       exc=st->exc+offset;
  986.       /* Excitation after post-filter*/
  987.       /* Calculate perceptually enhanced LPC filter */
  988.       if (st->lpc_enh_enabled)
  989.       {
  990.          spx_word16_t k1,k2,k3;
  991.          if (st->submodes[st->submodeID] != NULL)
  992.          {
  993.             k1=SUBMODE(lpc_enh_k1);
  994.             k2=SUBMODE(lpc_enh_k2);
  995.             k3=SUBMODE(lpc_enh_k3);
  996.          } else {
  997.             k1=k2=.7*GAMMA_SCALING;
  998.             k3=.0;
  999.          }
  1000.          bw_lpc(k1, st->interp_qlpc, awk1, st->lpcSize);
  1001.          bw_lpc(k2, st->interp_qlpc, awk2, st->lpcSize);
  1002.          bw_lpc(k3, st->interp_qlpc, awk3, st->lpcSize);
  1003.       }
  1004.         
  1005.       /* Make up a plausible excitation */
  1006.       /* FIXME: THIS CAN BE IMPROVED */
  1007.       /*if (pitch_gain>.95)
  1008.         pitch_gain=.95;*/
  1009.       innov_gain = compute_rms(st->innov, st->frameSize);
  1010.       for (i=0;i<st->subframeSize;i++)
  1011.       {
  1012.          exc[i]= MULT16_32_Q15(pitch_gain, (exc[i-st->last_pitch]+VERY_SMALL)) + 
  1013.                MULT16_32_Q15(fact, MULT16_32_Q15(sqrt(SHL(Q15ONE,15)-SHL(pitch_gain,15)),speex_rand(innov_gain, &st->seed)));
  1014.       }
  1015.       
  1016.       for (i=0;i<st->subframeSize;i++)
  1017.          sp[i]=exc[i];
  1018.       
  1019.       /* Signal synthesis */
  1020.       if (st->lpc_enh_enabled)
  1021.       {
  1022.          filter_mem2(sp, awk2, awk1, sp, st->subframeSize, st->lpcSize, 
  1023.                      st->mem_sp+st->lpcSize);
  1024.          filter_mem2(sp, awk3, st->interp_qlpc, sp, st->subframeSize, st->lpcSize, 
  1025.                      st->mem_sp);
  1026.       } else {
  1027.          for (i=0;i<st->lpcSize;i++)
  1028.             st->mem_sp[st->lpcSize+i] = 0;
  1029.          iir_mem2(sp, st->interp_qlpc, sp, st->subframeSize, st->lpcSize, 
  1030.                      st->mem_sp);
  1031.       }      
  1032.    }
  1033.    for (i=0;i<st->frameSize;i++)
  1034.    {
  1035.       spx_word32_t sig = PSHR32(st->frame[i],SIG_SHIFT);
  1036.       if (sig>32767)
  1037.          sig = 32767;
  1038.       if (sig<-32767)
  1039.          sig = -32767;
  1040.      out[i]=sig;
  1041.    }
  1042.    
  1043.    st->first = 0;
  1044.    st->count_lost++;
  1045.    st->pitch_gain_buf[st->pitch_gain_buf_idx++] = PSHR(pitch_gain,9);
  1046.    if (st->pitch_gain_buf_idx > 2) /* rollover */
  1047.       st->pitch_gain_buf_idx = 0;
  1048. }
  1049. int nb_decode(void *state, SpeexBits *bits, void *vout)
  1050. {
  1051.    DecState *st;
  1052.    int i, sub;
  1053.    int pitch;
  1054.    spx_word16_t pitch_gain[3];
  1055.    spx_word32_t ol_gain=0;
  1056.    int ol_pitch=0;
  1057.    spx_word16_t ol_pitch_coef=0;
  1058.    int best_pitch=40;
  1059.    spx_word16_t best_pitch_gain=0;
  1060.    int wideband;
  1061.    int m;
  1062.    char *stack;
  1063.    VARDECL(spx_coef_t *awk1);
  1064.    VARDECL(spx_coef_t *awk2);
  1065.    VARDECL(spx_coef_t *awk3);
  1066.    spx_word16_t pitch_average=0;
  1067. #ifdef EPIC_48K
  1068.    int pitch_half[2];
  1069.    int ol_pitch_id=0;
  1070. #endif
  1071.    spx_word16_t *out = vout;
  1072.    st=(DecState*)state;
  1073.    stack=st->stack;
  1074.    if (st->encode_submode)
  1075.    {
  1076. #ifdef EPIC_48K
  1077.    if (!st->lbr_48k) {
  1078. #endif
  1079.    /* Check if we're in DTX mode*/
  1080.    if (!bits && st->dtx_enabled)
  1081.    {
  1082.       st->submodeID=0;
  1083.    } else 
  1084.    {
  1085.       /* If bits is NULL, consider the packet to be lost (what could we do anyway) */
  1086.       if (!bits)
  1087.       {
  1088.          nb_decode_lost(st, out, stack);
  1089.          return 0;
  1090.       }
  1091.       /* Search for next narrowband block (handle requests, skip wideband blocks) */
  1092.       do {
  1093.          if (speex_bits_remaining(bits)<5)
  1094.             return -1;
  1095.          wideband = speex_bits_unpack_unsigned(bits, 1);
  1096.          if (wideband) /* Skip wideband block (for compatibility) */
  1097.          {
  1098.             int submode;
  1099.             int advance;
  1100.             advance = submode = speex_bits_unpack_unsigned(bits, SB_SUBMODE_BITS);
  1101.             speex_mode_query(&speex_wb_mode, SPEEX_SUBMODE_BITS_PER_FRAME, &advance);
  1102.             if (advance < 0)
  1103.             {
  1104.                speex_warning ("Invalid wideband mode encountered. Corrupted stream?");
  1105.                return -2;
  1106.             } 
  1107.             advance -= (SB_SUBMODE_BITS+1);
  1108.             speex_bits_advance(bits, advance);
  1109.             
  1110.             if (speex_bits_remaining(bits)<5)
  1111.                return -1;
  1112.             wideband = speex_bits_unpack_unsigned(bits, 1);
  1113.             if (wideband)
  1114.             {
  1115.                advance = submode = speex_bits_unpack_unsigned(bits, SB_SUBMODE_BITS);
  1116.                speex_mode_query(&speex_wb_mode, SPEEX_SUBMODE_BITS_PER_FRAME, &advance);
  1117.                if (advance < 0)
  1118.                {
  1119.                   speex_warning ("Invalid wideband mode encountered: corrupted stream?");
  1120.                   return -2;
  1121.                } 
  1122.                advance -= (SB_SUBMODE_BITS+1);
  1123.                speex_bits_advance(bits, advance);
  1124.                wideband = speex_bits_unpack_unsigned(bits, 1);
  1125.                if (wideband)
  1126.                {
  1127.                   speex_warning ("More than two wideband layers found: corrupted stream?");
  1128.                   return -2;
  1129.                }
  1130.             }
  1131.          }
  1132.          if (speex_bits_remaining(bits)<4)
  1133.             return -1;
  1134.          /* FIXME: Check for overflow */
  1135.          m = speex_bits_unpack_unsigned(bits, 4);
  1136.          if (m==15) /* We found a terminator */
  1137.          {
  1138.             return -1;
  1139.          } else if (m==14) /* Speex in-band request */
  1140.          {
  1141.             int ret = speex_inband_handler(bits, st->speex_callbacks, state);
  1142.             if (ret)
  1143.                return ret;
  1144.          } else if (m==13) /* User in-band request */
  1145.          {
  1146.             int ret = st->user_callback.func(bits, state, st->user_callback.data);
  1147.             if (ret)
  1148.                return ret;
  1149.          } else if (m>8) /* Invalid mode */
  1150.          {
  1151.             speex_warning("Invalid mode encountered: corrupted stream?");
  1152.             return -2;
  1153.          }
  1154.       
  1155.       } while (m>8);
  1156.       /* Get the sub-mode that was used */
  1157.       st->submodeID = m;
  1158.    }
  1159. #ifdef EPIC_48K
  1160.    }
  1161. #endif
  1162.    }
  1163.    /* Shift all buffers by one frame */
  1164.    speex_move(st->excBuf, st->excBuf+st->frameSize, (st->max_pitch + 1)*sizeof(spx_sig_t));
  1165.    /* If null mode (no transmission), just set a couple things to zero*/
  1166.    if (st->submodes[st->submodeID] == NULL)
  1167.    {
  1168.       VARDECL(spx_coef_t *lpc);
  1169.       ALLOC(lpc, st->lpcSize, spx_coef_t);
  1170.       bw_lpc(GAMMA_SCALING*.93, st->interp_qlpc, lpc, st->lpcSize);
  1171.       {
  1172.          float innov_gain=0;
  1173.          float pgain=GAIN_SCALING_1*st->last_pitch_gain;
  1174.          if (pgain>.6)
  1175.             pgain=.6;
  1176.  innov_gain = compute_rms(st->innov, st->frameSize);
  1177.          for (i=0;i<st->frameSize;i++)
  1178.             st->exc[i]=VERY_SMALL;
  1179.          speex_rand_vec(innov_gain, st->exc, st->frameSize);
  1180.       }
  1181.       st->first=1;
  1182.       /* Final signal synthesis from excitation */
  1183.       iir_mem2(st->exc, lpc, st->frame, st->frameSize, st->lpcSize, st->mem_sp);
  1184.       for (i=0;i<st->frameSize;i++)
  1185.       {
  1186.          spx_word32_t sig = PSHR32(st->frame[i],SIG_SHIFT);
  1187.          if (sig>32767)
  1188.             sig = 32767;
  1189.          if (sig<-32767)
  1190.             sig = -32767;
  1191.          out[i]=sig;
  1192.       }
  1193.       st->count_lost=0;
  1194.       return 0;
  1195.    }
  1196.    /* Unquantize LSPs */
  1197.    SUBMODE(lsp_unquant)(st->qlsp, st->lpcSize, bits);
  1198.    /*Damp memory if a frame was lost and the LSP changed too much*/
  1199.    if (st->count_lost)
  1200.    {
  1201.       spx_word16_t fact;
  1202.       spx_word32_t lsp_dist=0;
  1203.       for (i=0;i<st->lpcSize;i++)
  1204.          lsp_dist = ADD32(lsp_dist, EXTEND32(ABS(st->old_qlsp[i] - st->qlsp[i])));
  1205. #ifdef FIXED_POINT
  1206.       fact = SHR16(19661,SHR32(lsp_dist,LSP_SHIFT+2));      
  1207. #else
  1208.       fact = .6*exp(-.2*lsp_dist);
  1209. #endif
  1210.       for (i=0;i<2*st->lpcSize;i++)
  1211.          st->mem_sp[i] = MULT16_32_Q15(fact,st->mem_sp[i]);
  1212.    }
  1213.    /* Handle first frame and lost-packet case */
  1214.    if (st->first || st->count_lost)
  1215.    {
  1216.       for (i=0;i<st->lpcSize;i++)
  1217.          st->old_qlsp[i] = st->qlsp[i];
  1218.    }
  1219. #ifdef EPIC_48K
  1220.    if (st->lbr_48k) {
  1221.       pitch_half[0] = st->min_pitch+speex_bits_unpack_unsigned(bits, 7);
  1222.       pitch_half[1] = pitch_half[0]+speex_bits_unpack_unsigned(bits, 2)-1;
  1223.       ol_pitch_id = speex_bits_unpack_unsigned(bits, 3);
  1224.       ol_pitch_coef=GAIN_SCALING*0.13514*ol_pitch_id;
  1225.       {
  1226.          int qe;
  1227.          qe = speex_bits_unpack_unsigned(bits, 4);
  1228.          ol_gain = SIG_SCALING*exp((qe+2)/2.1),SIG_SHIFT;
  1229.       }
  1230.    } else {
  1231. #endif
  1232.    /* Get open-loop pitch estimation for low bit-rate pitch coding */
  1233.    if (SUBMODE(lbr_pitch)!=-1)
  1234.    {
  1235.       ol_pitch = st->min_pitch+speex_bits_unpack_unsigned(bits, 7);
  1236.    } 
  1237.    
  1238.    if (SUBMODE(forced_pitch_gain))
  1239.    {
  1240.       int quant;
  1241.       quant = speex_bits_unpack_unsigned(bits, 4);
  1242.       ol_pitch_coef=GAIN_SCALING*0.066667*quant;
  1243.    }
  1244.    
  1245.    /* Get global excitation gain */
  1246.    {
  1247.       int qe;
  1248.       qe = speex_bits_unpack_unsigned(bits, 5);
  1249. #ifdef FIXED_POINT
  1250.       ol_gain = MULT16_32_Q15(28406,ol_gain_table[qe]);
  1251. #else
  1252.       ol_gain = SIG_SCALING*exp(qe/3.5);
  1253. #endif
  1254.    }
  1255. #ifdef EPIC_48K
  1256.    }
  1257. #endif
  1258.    ALLOC(awk1, st->lpcSize+1, spx_coef_t);
  1259.    ALLOC(awk2, st->lpcSize+1, spx_coef_t);
  1260.    ALLOC(awk3, st->lpcSize+1, spx_coef_t);
  1261.    if (st->submodeID==1)
  1262.    {
  1263.       int extra;
  1264.       extra = speex_bits_unpack_unsigned(bits, 4);
  1265.       if (extra==15)
  1266.          st->dtx_enabled=1;
  1267.       else
  1268.          st->dtx_enabled=0;
  1269.    }
  1270.    if (st->submodeID>1)
  1271.       st->dtx_enabled=0;
  1272.    /*Loop on subframes */
  1273.    for (sub=0;sub<st->nbSubframes;sub++)
  1274.    {
  1275.       int offset;
  1276.       spx_sig_t *sp, *exc;
  1277.       spx_word16_t tmp;
  1278. #ifdef EPIC_48K
  1279.       if (st->lbr_48k)
  1280.       {
  1281.          if (sub*2 < st->nbSubframes)
  1282.             ol_pitch = pitch_half[0];
  1283.          else
  1284.             ol_pitch = pitch_half[1];
  1285.       }
  1286. #endif
  1287.       /* Offset relative to start of frame */
  1288.       offset = st->subframeSize*sub;
  1289.       /* Original signal */
  1290.       sp=st->frame+offset;
  1291.       /* Excitation */
  1292.       exc=st->exc+offset;
  1293.       /* Excitation after post-filter*/
  1294.       /* LSP interpolation (quantized and unquantized) */
  1295.       lsp_interpolate(st->old_qlsp, st->qlsp, st->interp_qlsp, st->lpcSize, sub, st->nbSubframes);
  1296.       /* Make sure the LSP's are stable */
  1297.       lsp_enforce_margin(st->interp_qlsp, st->lpcSize, LSP_MARGIN);
  1298.       /* Compute interpolated LPCs (unquantized) */
  1299.       lsp_to_lpc(st->interp_qlsp, st->interp_qlpc, st->lpcSize, stack);
  1300.       /* Compute enhanced synthesis filter */
  1301.       if (st->lpc_enh_enabled)
  1302.       {
  1303.          bw_lpc(SUBMODE(lpc_enh_k1), st->interp_qlpc, awk1, st->lpcSize);
  1304.          bw_lpc(SUBMODE(lpc_enh_k2), st->interp_qlpc, awk2, st->lpcSize);
  1305.          bw_lpc(SUBMODE(lpc_enh_k3), st->interp_qlpc, awk3, st->lpcSize);
  1306.       }
  1307.       /* Compute analysis filter at w=pi */
  1308.       {
  1309.          spx_word32_t pi_g=LPC_SCALING;
  1310.          for (i=0;i<st->lpcSize;i+=2)
  1311.          {
  1312.             /*pi_g += -st->interp_qlpc[i] +  st->interp_qlpc[i+1];*/
  1313.             pi_g = ADD32(pi_g, SUB32(st->interp_qlpc[i+1],st->interp_qlpc[i]));
  1314.          }
  1315.          st->pi_gain[sub] = pi_g;
  1316.       }
  1317.       /* Reset excitation */
  1318.       for (i=0;i<st->subframeSize;i++)
  1319.          exc[i]=0;
  1320.       /*Adaptive codebook contribution*/
  1321.       if (SUBMODE(ltp_unquant))
  1322.       {
  1323.          int pit_min, pit_max;
  1324.          /* Handle pitch constraints if any */
  1325.          if (SUBMODE(lbr_pitch) != -1)
  1326.          {
  1327.             int margin;
  1328.             margin = SUBMODE(lbr_pitch);
  1329.             if (margin)
  1330.             {
  1331. /* GT - need optimization?
  1332.                if (ol_pitch < st->min_pitch+margin-1)
  1333.                   ol_pitch=st->min_pitch+margin-1;
  1334.                if (ol_pitch > st->max_pitch-margin)
  1335.                   ol_pitch=st->max_pitch-margin;
  1336.                pit_min = ol_pitch-margin+1;
  1337.                pit_max = ol_pitch+margin;
  1338. */
  1339.                pit_min = ol_pitch-margin+1;
  1340.                if (pit_min < st->min_pitch)
  1341.   pit_min = st->min_pitch;
  1342.                pit_max = ol_pitch+margin;
  1343.                if (pit_max > st->max_pitch)
  1344.   pit_max = st->max_pitch;
  1345.             } else {
  1346.                pit_min = pit_max = ol_pitch;
  1347.             }
  1348.          } else {
  1349.             pit_min = st->min_pitch;
  1350.             pit_max = st->max_pitch;
  1351.          }
  1352. #ifdef EPIC_48K
  1353.          if (st->lbr_48k)
  1354.          {
  1355.              SUBMODE(ltp_unquant)(exc, pit_min, pit_max, ol_pitch_coef, SUBMODE(ltp_params), 
  1356.                                   st->subframeSize, &pitch, &pitch_gain[0], bits, stack, 
  1357.                                   st->count_lost, offset, st->last_pitch_gain, ol_pitch_id);
  1358.          } else {
  1359. #endif
  1360.              SUBMODE(ltp_unquant)(exc, pit_min, pit_max, ol_pitch_coef, SUBMODE(ltp_params), 
  1361.                                   st->subframeSize, &pitch, &pitch_gain[0], bits, stack, 
  1362.                                   st->count_lost, offset, st->last_pitch_gain, 0);
  1363. #ifdef EPIC_48K
  1364.          }
  1365. #endif
  1366.          
  1367.          /* If we had lost frames, check energy of last received frame */
  1368.          if (st->count_lost && ol_gain < st->last_ol_gain)
  1369.          {
  1370.             /*float fact = (float)ol_gain/(st->last_ol_gain+1);
  1371.             for (i=0;i<st->subframeSize;i++)
  1372.             exc[i]*=fact;*/
  1373.             spx_word16_t fact = DIV32_16(SHL32(EXTEND32(ol_gain),15),st->last_ol_gain+1);
  1374.             for (i=0;i<st->subframeSize;i++)
  1375.                exc[i] = MULT16_32_Q15(fact, exc[i]);
  1376.          }
  1377.          tmp = gain_3tap_to_1tap(pitch_gain);
  1378.          pitch_average += tmp;
  1379.          if (tmp>best_pitch_gain)
  1380.          {
  1381.             best_pitch = pitch;
  1382.     best_pitch_gain = tmp;
  1383.          }
  1384.       } else {
  1385.          speex_error("No pitch prediction, what's wrong");
  1386.       }
  1387.       
  1388.       /* Unquantize the innovation */
  1389.       {
  1390.          int q_energy;
  1391.          spx_word32_t ener;
  1392.          spx_sig_t *innov;
  1393.          
  1394.          innov = st->innov+sub*st->subframeSize;
  1395.          for (i=0;i<st->subframeSize;i++)
  1396.             innov[i]=0;
  1397.          /* Decode sub-frame gain correction */
  1398.          if (SUBMODE(have_subframe_gain)==3)
  1399.          {
  1400.             q_energy = speex_bits_unpack_unsigned(bits, 3);
  1401.             ener = MULT16_32_Q14(exc_gain_quant_scal3[q_energy],ol_gain);
  1402.          } else if (SUBMODE(have_subframe_gain)==1)
  1403.          {
  1404.             q_energy = speex_bits_unpack_unsigned(bits, 1);
  1405.             ener = MULT16_32_Q14(exc_gain_quant_scal1[q_energy],ol_gain);
  1406.          } else {
  1407.             ener = ol_gain;
  1408.          }
  1409.                   
  1410.          if (SUBMODE(innovation_unquant))
  1411.          {
  1412.             /*Fixed codebook contribution*/
  1413.             SUBMODE(innovation_unquant)(innov, SUBMODE(innovation_params), st->subframeSize, bits, stack);
  1414.          } else {
  1415.             speex_error("No fixed codebook");
  1416.          }
  1417.          /* De-normalize innovation and update excitation */
  1418. #ifdef FIXED_POINT
  1419.          signal_mul(innov, innov, ener, st->subframeSize);
  1420. #else
  1421.          signal_mul(innov, innov, ener, st->subframeSize);
  1422. #endif
  1423.          /*Vocoder mode*/
  1424.          if (st->submodeID==1) 
  1425.          {
  1426.             float g=ol_pitch_coef*GAIN_SCALING_1;
  1427.             
  1428.             for (i=0;i<st->subframeSize;i++)
  1429.                exc[i]=0;
  1430.             while (st->voc_offset<st->subframeSize)
  1431.             {
  1432.                if (st->voc_offset>=0)
  1433.                   exc[st->voc_offset]=SIG_SCALING*sqrt(1.0*ol_pitch);
  1434.                st->voc_offset+=ol_pitch;
  1435.             }
  1436.             st->voc_offset -= st->subframeSize;
  1437.             g=.5+2*(g-.6);
  1438.             if (g<0)
  1439.                g=0;
  1440.             if (g>1)
  1441.                g=1;
  1442.             for (i=0;i<st->subframeSize;i++)
  1443.             {
  1444.                float exci=exc[i];
  1445.                exc[i]=.8*g*exc[i]*ol_gain/SIG_SCALING + .6*g*st->voc_m1*ol_gain/SIG_SCALING + .5*g*innov[i] - .5*g*st->voc_m2 + (1-g)*innov[i];
  1446.                st->voc_m1 = exci;
  1447.                st->voc_m2=innov[i];
  1448.                st->voc_mean = .95*st->voc_mean + .05*exc[i];
  1449.                exc[i]-=st->voc_mean;
  1450.             }
  1451.          } else {
  1452.             for (i=0;i<st->subframeSize;i++)
  1453.                exc[i]=ADD32(exc[i],innov[i]);
  1454.             /*print_vec(exc, 40, "innov");*/
  1455.          }
  1456.          /* Decode second codebook (only for some modes) */
  1457.          if (SUBMODE(double_codebook))
  1458.          {
  1459.             char *tmp_stack=stack;
  1460.             VARDECL(spx_sig_t *innov2);
  1461.             ALLOC(innov2, st->subframeSize, spx_sig_t);
  1462.             for (i=0;i<st->subframeSize;i++)
  1463.                innov2[i]=0;
  1464.             SUBMODE(innovation_unquant)(innov2, SUBMODE(innovation_params), st->subframeSize, bits, stack);
  1465.             signal_mul(innov2, innov2, (spx_word32_t) (ener*(1/2.2)), st->subframeSize);
  1466.             for (i=0;i<st->subframeSize;i++)
  1467.                exc[i] = ADD32(exc[i],innov2[i]);
  1468.             stack = tmp_stack;
  1469.          }
  1470.       }
  1471.       for (i=0;i<st->subframeSize;i++)
  1472.          sp[i]=exc[i];
  1473.       /* Signal synthesis */
  1474.       if (st->lpc_enh_enabled && SUBMODE(comb_gain)>0)
  1475.          comb_filter(exc, sp, st->interp_qlpc, st->lpcSize, st->subframeSize,
  1476.                               pitch, pitch_gain, SUBMODE(comb_gain), st->comb_mem);
  1477.       if (st->lpc_enh_enabled)
  1478.       {
  1479.          /* Use enhanced LPC filter */
  1480.          filter_mem2(sp, awk2, awk1, sp, st->subframeSize, st->lpcSize, 
  1481.                      st->mem_sp+st->lpcSize);
  1482.          filter_mem2(sp, awk3, st->interp_qlpc, sp, st->subframeSize, st->lpcSize, 
  1483.                      st->mem_sp);
  1484.       } else {
  1485.          /* Use regular filter */
  1486.          for (i=0;i<st->lpcSize;i++)
  1487.             st->mem_sp[st->lpcSize+i] = 0;
  1488.          iir_mem2(sp, st->interp_qlpc, sp, st->subframeSize, st->lpcSize, 
  1489.                      st->mem_sp);
  1490.       }
  1491.    }
  1492.    
  1493.    /*Copy output signal*/   
  1494.    for (i=0;i<st->frameSize;i++)
  1495.    {
  1496.       spx_word32_t sig = PSHR32(st->frame[i],SIG_SHIFT);
  1497.       if (sig>32767)
  1498.          sig = 32767;
  1499.       if (sig<-32767)
  1500.          sig = -32767;
  1501.      out[i]=sig;
  1502.    }
  1503.    /*for (i=0;i<st->frameSize;i++)
  1504.      printf ("%dn", (int)st->frame[i]);*/
  1505.    /* Store the LSPs for interpolation in the next frame */
  1506.    for (i=0;i<st->lpcSize;i++)
  1507.       st->old_qlsp[i] = st->qlsp[i];
  1508.    /* The next frame will not be the first (Duh!) */
  1509.    st->first = 0;
  1510.    st->count_lost=0;
  1511.    st->last_pitch = best_pitch;
  1512. #ifdef FIXED_POINT
  1513.    st->last_pitch_gain = PSHR16(pitch_average,2);
  1514. #else
  1515.    st->last_pitch_gain = .25*pitch_average;   
  1516. #endif
  1517.    st->pitch_gain_buf[st->pitch_gain_buf_idx++] = st->last_pitch_gain;
  1518.    if (st->pitch_gain_buf_idx > 2) /* rollover */
  1519.       st->pitch_gain_buf_idx = 0;
  1520.    st->last_ol_gain = ol_gain;
  1521.    return 0;
  1522. }
  1523. int nb_encoder_ctl(void *state, int request, void *ptr)
  1524. {
  1525.    EncState *st;
  1526.    st=(EncState*)state;     
  1527.    switch(request)
  1528.    {
  1529.    case SPEEX_GET_FRAME_SIZE:
  1530.       (*(int*)ptr) = st->frameSize;
  1531.       break;
  1532.    case SPEEX_SET_LOW_MODE:
  1533.    case SPEEX_SET_MODE:
  1534.       st->submodeSelect = st->submodeID = (*(int*)ptr);
  1535.       break;
  1536.    case SPEEX_GET_LOW_MODE:
  1537.    case SPEEX_GET_MODE:
  1538.       (*(int*)ptr) = st->submodeID;
  1539.       break;
  1540.    case SPEEX_SET_VBR:
  1541.       st->vbr_enabled = (*(int*)ptr);
  1542.       break;
  1543.    case SPEEX_GET_VBR:
  1544.       (*(int*)ptr) = st->vbr_enabled;
  1545.       break;
  1546.    case SPEEX_SET_VAD:
  1547.       st->vad_enabled = (*(int*)ptr);
  1548.       break;
  1549.    case SPEEX_GET_VAD:
  1550.       (*(int*)ptr) = st->vad_enabled;
  1551.       break;
  1552.    case SPEEX_SET_DTX:
  1553.       st->dtx_enabled = (*(int*)ptr);
  1554.       break;
  1555.    case SPEEX_GET_DTX:
  1556.       (*(int*)ptr) = st->dtx_enabled;
  1557.       break;
  1558.    case SPEEX_SET_ABR:
  1559.       st->abr_enabled = (*(int*)ptr);
  1560.       st->vbr_enabled = 1;
  1561.       {
  1562.          int i=10, rate, target;
  1563.          float vbr_qual;
  1564.          target = (*(int*)ptr);
  1565.          while (i>=0)
  1566.          {
  1567.             speex_encoder_ctl(st, SPEEX_SET_QUALITY, &i);
  1568.             speex_encoder_ctl(st, SPEEX_GET_BITRATE, &rate);
  1569.             if (rate <= target)
  1570.                break;
  1571.             i--;
  1572.          }
  1573.          vbr_qual=i;
  1574.          if (vbr_qual<0)
  1575.             vbr_qual=0;
  1576.          speex_encoder_ctl(st, SPEEX_SET_VBR_QUALITY, &vbr_qual);
  1577.          st->abr_count=0;
  1578.          st->abr_drift=0;
  1579.          st->abr_drift2=0;
  1580.       }
  1581.       
  1582.       break;
  1583.    case SPEEX_GET_ABR:
  1584.       (*(int*)ptr) = st->abr_enabled;
  1585.       break;
  1586.    case SPEEX_SET_VBR_QUALITY:
  1587.       st->vbr_quality = (*(float*)ptr);
  1588.       break;
  1589.    case SPEEX_GET_VBR_QUALITY:
  1590.       (*(float*)ptr) = st->vbr_quality;
  1591.       break;
  1592.    case SPEEX_SET_QUALITY:
  1593.       {
  1594.          int quality = (*(int*)ptr);
  1595.          if (quality < 0)
  1596.             quality = 0;
  1597.          if (quality > 10)
  1598.             quality = 10;
  1599.          st->submodeSelect = st->submodeID = ((const SpeexNBMode*)(st->mode->mode))->quality_map[quality];
  1600.       }
  1601.       break;
  1602.    case SPEEX_SET_COMPLEXITY:
  1603.       st->complexity = (*(int*)ptr);
  1604.       if (st->complexity<0)
  1605.          st->complexity=0;
  1606.       break;
  1607.    case SPEEX_GET_COMPLEXITY:
  1608.       (*(int*)ptr) = st->complexity;
  1609.       break;
  1610.    case SPEEX_SET_BITRATE:
  1611.       {
  1612.          int i=10, rate, target;
  1613.          target = (*(int*)ptr);
  1614.          while (i>=0)
  1615.          {
  1616.             speex_encoder_ctl(st, SPEEX_SET_QUALITY, &i);
  1617.             speex_encoder_ctl(st, SPEEX_GET_BITRATE, &rate);
  1618.             if (rate <= target)
  1619.                break;
  1620.             i--;
  1621.          }
  1622.       }
  1623.       break;
  1624.    case SPEEX_GET_BITRATE:
  1625.       if (st->submodes[st->submodeID])
  1626.          (*(int*)ptr) = st->sampling_rate*SUBMODE(bits_per_frame)/st->frameSize;
  1627.       else
  1628.          (*(int*)ptr) = st->sampling_rate*(NB_SUBMODE_BITS+1)/st->frameSize;
  1629.       break;
  1630.    case SPEEX_SET_SAMPLING_RATE:
  1631.       st->sampling_rate = (*(int*)ptr);
  1632.       break;
  1633.    case SPEEX_GET_SAMPLING_RATE:
  1634.       (*(int*)ptr)=st->sampling_rate;
  1635.       break;
  1636.    case SPEEX_RESET_STATE:
  1637.       {
  1638.          int i;
  1639.          st->bounded_pitch = 1;
  1640.          st->first = 1;
  1641.          for (i=0;i<st->lpcSize;i++)
  1642.             st->lsp[i]=(M_PI*((float)(i+1)))/(st->lpcSize+1);
  1643.          for (i=0;i<st->lpcSize;i++)
  1644.             st->mem_sw[i]=st->mem_sw_whole[i]=st->mem_sp[i]=st->mem_exc[i]=0;
  1645.          for (i=0;i<st->frameSize+st->max_pitch+1;i++)
  1646.             st->excBuf[i]=st->swBuf[i]=0;
  1647.          for (i=0;i<st->windowSize;i++)
  1648.             st->inBuf[i]=0;
  1649.       }
  1650.       break;
  1651.    case SPEEX_SET_SUBMODE_ENCODING:
  1652.       st->encode_submode = (*(int*)ptr);
  1653.       break;
  1654.    case SPEEX_GET_SUBMODE_ENCODING:
  1655.       (*(int*)ptr) = st->encode_submode;
  1656.       break;
  1657.    case SPEEX_GET_LOOKAHEAD:
  1658.       (*(int*)ptr)=(st->windowSize-st->frameSize);
  1659.       break;
  1660.    case SPEEX_SET_PLC_TUNING:
  1661.       st->plc_tuning = (*(int*)ptr);
  1662.       if (st->plc_tuning>100)
  1663.          st->plc_tuning=100;
  1664.       break;
  1665.    case SPEEX_GET_PLC_TUNING:
  1666.       (*(int*)ptr)=(st->plc_tuning);
  1667.       break;
  1668.    case SPEEX_GET_PI_GAIN:
  1669.       {
  1670.          int i;
  1671.          spx_word32_t *g = (spx_word32_t*)ptr;
  1672.          for (i=0;i<st->nbSubframes;i++)
  1673.             g[i]=st->pi_gain[i];
  1674.       }
  1675.       break;
  1676.    case SPEEX_GET_EXC:
  1677.       {
  1678.          int i;
  1679.          spx_sig_t *e = (spx_sig_t*)ptr;
  1680.          for (i=0;i<st->frameSize;i++)
  1681.             e[i]=st->exc[i];
  1682.       }
  1683.       break;
  1684.    case SPEEX_GET_INNOV:
  1685.       {
  1686.          int i;
  1687.          spx_sig_t *e = (spx_sig_t*)ptr;
  1688.          for (i=0;i<st->frameSize;i++)
  1689.             e[i]=st->innov[i];
  1690.       }
  1691.       break;
  1692.    case SPEEX_GET_RELATIVE_QUALITY:
  1693.       (*(float*)ptr)=st->relative_quality;
  1694.       break;
  1695.    default:
  1696.       speex_warning_int("Unknown nb_ctl request: ", request);
  1697.       return -1;
  1698.    }
  1699.    return 0;
  1700. }
  1701. int nb_decoder_ctl(void *state, int request, void *ptr)
  1702. {
  1703.    DecState *st;
  1704.    st=(DecState*)state;
  1705.    switch(request)
  1706.    {
  1707.    case SPEEX_SET_LOW_MODE:
  1708.    case SPEEX_SET_MODE:
  1709.       st->submodeID = (*(int*)ptr);
  1710.       break;
  1711.    case SPEEX_GET_LOW_MODE:
  1712.    case SPEEX_GET_MODE:
  1713.       (*(int*)ptr) = st->submodeID;
  1714.       break;
  1715.    case SPEEX_SET_ENH:
  1716.       st->lpc_enh_enabled = *((int*)ptr);
  1717.       break;
  1718.    case SPEEX_GET_ENH:
  1719.       *((int*)ptr) = st->lpc_enh_enabled;
  1720.       break;
  1721.    case SPEEX_GET_FRAME_SIZE:
  1722.       (*(int*)ptr) = st->frameSize;
  1723.       break;
  1724.    case SPEEX_GET_BITRATE:
  1725.       if (st->submodes[st->submodeID])
  1726.          (*(int*)ptr) = st->sampling_rate*SUBMODE(bits_per_frame)/st->frameSize;
  1727.       else
  1728.          (*(int*)ptr) = st->sampling_rate*(NB_SUBMODE_BITS+1)/st->frameSize;
  1729.       break;
  1730.    case SPEEX_SET_SAMPLING_RATE:
  1731.       st->sampling_rate = (*(int*)ptr);
  1732.       break;
  1733.    case SPEEX_GET_SAMPLING_RATE:
  1734.       (*(int*)ptr)=st->sampling_rate;
  1735.       break;
  1736.    case SPEEX_SET_HANDLER:
  1737.       {
  1738.          SpeexCallback *c = (SpeexCallback*)ptr;
  1739.          st->speex_callbacks[c->callback_id].func=c->func;
  1740.          st->speex_callbacks[c->callback_id].data=c->data;
  1741.          st->speex_callbacks[c->callback_id].callback_id=c->callback_id;
  1742.       }
  1743.       break;
  1744.    case SPEEX_SET_USER_HANDLER:
  1745.       {
  1746.          SpeexCallback *c = (SpeexCallback*)ptr;
  1747.          st->user_callback.func=c->func;
  1748.          st->user_callback.data=c->data;
  1749.          st->user_callback.callback_id=c->callback_id;
  1750.       }
  1751.       break;
  1752.    case SPEEX_RESET_STATE:
  1753.       {
  1754.          int i;
  1755.          for (i=0;i<2*st->lpcSize;i++)
  1756.             st->mem_sp[i]=0;
  1757.          for (i=0;i<st->frameSize + st->max_pitch + 1;i++)
  1758.             st->excBuf[i]=0;
  1759.          for (i=0;i<st->frameSize;i++)
  1760.             st->inBuf[i] = 0;
  1761.       }
  1762.       break;
  1763.    case SPEEX_SET_SUBMODE_ENCODING:
  1764.       st->encode_submode = (*(int*)ptr);
  1765.       break;
  1766.    case SPEEX_GET_SUBMODE_ENCODING:
  1767.       (*(int*)ptr) = st->encode_submode;
  1768.       break;
  1769.    case SPEEX_GET_PI_GAIN:
  1770.       {
  1771.          int i;
  1772.          spx_word32_t *g = (spx_word32_t*)ptr;
  1773.          for (i=0;i<st->nbSubframes;i++)
  1774.             g[i]=st->pi_gain[i];
  1775.       }
  1776.       break;
  1777.    case SPEEX_GET_EXC:
  1778.       {
  1779.          int i;
  1780.          spx_sig_t *e = (spx_sig_t*)ptr;
  1781.          for (i=0;i<st->frameSize;i++)
  1782.             e[i]=st->exc[i];
  1783.       }
  1784.       break;
  1785.    case SPEEX_GET_INNOV:
  1786.       {
  1787.          int i;
  1788.          spx_sig_t *e = (spx_sig_t*)ptr;
  1789.          for (i=0;i<st->frameSize;i++)
  1790.             e[i]=st->innov[i];
  1791.       }
  1792.       break;
  1793.    case SPEEX_GET_DTX_STATUS:
  1794.       *((int*)ptr) = st->dtx_enabled;
  1795.       break;
  1796.    default:
  1797.       speex_warning_int("Unknown nb_ctl request: ", request);
  1798.       return -1;
  1799.    }
  1800.    return 0;
  1801. }