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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: cb_search.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 "cb_search.h"
  34. #include "filters.h"
  35. #include "stack_alloc.h"
  36. #include "vq.h"
  37. #include "misc.h"
  38. #ifdef _USE_SSE
  39. #include "cb_search_sse.h"
  40. #elif defined(ARM4_ASM) || defined(ARM5E_ASM)
  41. #include "cb_search_arm4.h"
  42. #elif defined(BFIN_ASM)
  43. #include "cb_search_bfin.h"
  44. #endif
  45. #ifndef OVERRIDE_COMPUTE_WEIGHTED_CODEBOOK
  46. static void compute_weighted_codebook(const signed char *shape_cb, const spx_word16_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
  47. {
  48.    int i, j, k;
  49.    VARDECL(spx_word16_t *shape);
  50.    ALLOC(shape, subvect_size, spx_word16_t);
  51.    for (i=0;i<shape_cb_size;i++)
  52.    {
  53.       spx_word16_t *res;
  54.       
  55.       res = resp+i*subvect_size;
  56.       for (k=0;k<subvect_size;k++)
  57.          shape[k] = (spx_word16_t)shape_cb[i*subvect_size+k];
  58.       E[i]=0;
  59.       /* Compute codeword response using convolution with impulse response */
  60.       for(j=0;j<subvect_size;j++)
  61.       {
  62.          spx_word32_t resj=0;
  63.          spx_word16_t res16;
  64.          for (k=0;k<=j;k++)
  65.             resj = MAC16_16(resj,shape[k],r[j-k]);
  66. #ifdef FIXED_POINT
  67.          res16 = EXTRACT16(SHR32(resj, 11));
  68. #else
  69.          res16 = 0.03125f*resj;
  70. #endif
  71.          /* Compute codeword energy */
  72.          E[i]=MAC16_16(E[i],res16,res16);
  73.          res[j] = res16;
  74.          /*printf ("%dn", (int)res[j]);*/
  75.       }
  76.    }
  77. }
  78. #endif
  79. #ifndef OVERRIDE_TARGET_UPDATE
  80. static inline void target_update(spx_word16_t *t, spx_word16_t g, spx_word16_t *r, int len)
  81. {
  82.    int n;
  83.    int q=0;
  84.    for (n=0;n<len;n++,q++)
  85.       t[n] = SUB32(t[n],MULT16_16_Q11_32(g,r[q]));
  86. }
  87. #endif
  88. static void split_cb_search_shape_sign_N1(
  89. spx_sig_t target[], /* target vector */
  90. spx_coef_t ak[], /* LPCs for this subframe */
  91. spx_coef_t awk1[], /* Weighted LPCs for this subframe */
  92. spx_coef_t awk2[], /* Weighted LPCs for this subframe */
  93. const void *par,                      /* Codebook/search parameters*/
  94. int   p,                        /* number of LPC coeffs */
  95. int   nsf,                      /* number of samples in subframe */
  96. spx_sig_t *exc,
  97. spx_word16_t *r,
  98. SpeexBits *bits,
  99. char *stack,
  100. int   complexity,
  101. int   update_target
  102. )
  103. {
  104.    int i,j,m,n,q;
  105.    VARDECL(spx_word16_t *resp);
  106. #ifdef _USE_SSE
  107.    VARDECL(__m128 *resp2);
  108.    VARDECL(__m128 *E);
  109. #else
  110.    spx_word16_t *resp2;
  111.    VARDECL(spx_word32_t *E);
  112. #endif
  113.    VARDECL(spx_word16_t *t);
  114.    VARDECL(spx_sig_t *e);
  115.    const signed char *shape_cb;
  116.    int shape_cb_size, subvect_size, nb_subvect;
  117.    const split_cb_params *params;
  118.    int N=2;
  119.    int best_index;
  120.    spx_word32_t best_dist;
  121.    int have_sign;
  122.    N=complexity;
  123.    if (N>10)
  124.       N=10;
  125.    if (N<1)
  126.       N=1;
  127.    
  128.    params = (const split_cb_params *) par;
  129.    subvect_size = params->subvect_size;
  130.    nb_subvect = params->nb_subvect;
  131.    shape_cb_size = 1<<params->shape_bits;
  132.    shape_cb = params->shape_cb;
  133.    have_sign = params->have_sign;
  134.    ALLOC(resp, shape_cb_size*subvect_size, spx_word16_t);
  135. #ifdef _USE_SSE
  136.    ALLOC(resp2, (shape_cb_size*subvect_size)>>2, __m128);
  137.    ALLOC(E, shape_cb_size>>2, __m128);
  138. #else
  139.    resp2 = resp;
  140.    ALLOC(E, shape_cb_size, spx_word32_t);
  141. #endif
  142.    ALLOC(t, nsf, spx_word16_t);
  143.    ALLOC(e, nsf, spx_sig_t);
  144.    
  145.    /* FIXME: make that adaptive? */
  146.    for (i=0;i<nsf;i++)
  147.       t[i]=EXTRACT16(PSHR32(target[i],6));
  148.    compute_weighted_codebook(shape_cb, r, resp, resp2, E, shape_cb_size, subvect_size, stack);
  149.    for (i=0;i<nb_subvect;i++)
  150.    {
  151.       spx_word16_t *x=t+subvect_size*i;
  152.       /*Find new n-best based on previous n-best j*/
  153.       if (have_sign)
  154.          vq_nbest_sign(x, resp2, subvect_size, shape_cb_size, E, 1, &best_index, &best_dist, stack);
  155.       else
  156.          vq_nbest(x, resp2, subvect_size, shape_cb_size, E, 1, &best_index, &best_dist, stack);
  157.       
  158.       speex_bits_pack(bits,best_index,params->shape_bits+have_sign);
  159.       
  160.       {
  161.          int rind;
  162.          spx_word16_t *res;
  163.          spx_word16_t sign=1;
  164.          rind = best_index;
  165.          if (rind>=shape_cb_size)
  166.          {
  167.             sign=-1;
  168.             rind-=shape_cb_size;
  169.          }
  170.          res = resp+rind*subvect_size;
  171.          if (sign>0)
  172.             for (m=0;m<subvect_size;m++)
  173.                t[subvect_size*i+m] = SUB16(t[subvect_size*i+m], res[m]);
  174.          else
  175.             for (m=0;m<subvect_size;m++)
  176.                t[subvect_size*i+m] = ADD16(t[subvect_size*i+m], res[m]);
  177. #ifdef FIXED_POINT
  178.          if (sign)
  179.          {
  180.             for (j=0;j<subvect_size;j++)
  181.                e[subvect_size*i+j]=SHL32(EXTEND32(shape_cb[rind*subvect_size+j]),SIG_SHIFT-5);
  182.          } else {
  183.             for (j=0;j<subvect_size;j++)
  184.                e[subvect_size*i+j]=NEG32(SHL32(EXTEND32(shape_cb[rind*subvect_size+j]),SIG_SHIFT-5));
  185.          }
  186. #else
  187.          for (j=0;j<subvect_size;j++)
  188.             e[subvect_size*i+j]=sign*0.03125*shape_cb[rind*subvect_size+j];
  189. #endif
  190.       
  191.       }
  192.             
  193.       for (m=0;m<subvect_size;m++)
  194.       {
  195.          spx_word16_t g;
  196.          int rind;
  197.          spx_word16_t sign=1;
  198.          rind = best_index;
  199.          if (rind>=shape_cb_size)
  200.          {
  201.             sign=-1;
  202.             rind-=shape_cb_size;
  203.          }
  204.          
  205.          q=subvect_size-m;
  206. #ifdef FIXED_POINT
  207.          g=sign*shape_cb[rind*subvect_size+m];
  208.          target_update(t+subvect_size*(i+1), g, r+q, nsf-subvect_size*(i+1));
  209. #else
  210.          g=sign*0.03125*shape_cb[rind*subvect_size+m];
  211.          /*FIXME: I think that one too can be replaced by target_update */
  212.          for (n=subvect_size*(i+1);n<nsf;n++,q++)
  213.             t[n] = SUB32(t[n],g*r[q]);
  214. #endif
  215.       }
  216.    }
  217.    /* Update excitation */
  218.    /* FIXME: We could update the excitation directly above */
  219.    for (j=0;j<nsf;j++)
  220.       exc[j]=ADD32(exc[j],e[j]);
  221.    
  222.    /* Update target: only update target if necessary */
  223.    if (update_target)
  224.    {
  225.       VARDECL(spx_sig_t *r2);
  226.       ALLOC(r2, nsf, spx_sig_t);
  227.       syn_percep_zero(e, ak, awk1, awk2, r2, nsf,p, stack);
  228.       for (j=0;j<nsf;j++)
  229.          target[j]=SUB32(target[j],r2[j]);
  230.    }
  231. }
  232. void split_cb_search_shape_sign(
  233. spx_sig_t target[], /* target vector */
  234. spx_coef_t ak[], /* LPCs for this subframe */
  235. spx_coef_t awk1[], /* Weighted LPCs for this subframe */
  236. spx_coef_t awk2[], /* Weighted LPCs for this subframe */
  237. const void *par,                      /* Codebook/search parameters*/
  238. int   p,                        /* number of LPC coeffs */
  239. int   nsf,                      /* number of samples in subframe */
  240. spx_sig_t *exc,
  241. spx_word16_t *r,
  242. SpeexBits *bits,
  243. char *stack,
  244. int   complexity,
  245. int   update_target
  246. )
  247. {
  248.    int i,j,k,m,n,q;
  249.    VARDECL(spx_word16_t *resp);
  250. #ifdef _USE_SSE
  251.    VARDECL(__m128 *resp2);
  252.    VARDECL(__m128 *E);
  253. #else
  254.    spx_word16_t *resp2;
  255.    VARDECL(spx_word32_t *E);
  256. #endif
  257.    VARDECL(spx_word16_t *t);
  258.    VARDECL(spx_sig_t *e);
  259.    VARDECL(spx_sig_t *r2);
  260.    VARDECL(spx_word16_t *tmp);
  261.    VARDECL(spx_word32_t *ndist);
  262.    VARDECL(spx_word32_t *odist);
  263.    VARDECL(int *itmp);
  264.    VARDECL(spx_word16_t **ot2);
  265.    VARDECL(spx_word16_t **nt2);
  266.    spx_word16_t **ot, **nt;
  267.    VARDECL(int **nind);
  268.    VARDECL(int **oind);
  269.    VARDECL(int *ind);
  270.    const signed char *shape_cb;
  271.    int shape_cb_size, subvect_size, nb_subvect;
  272.    const split_cb_params *params;
  273.    int N=2;
  274.    VARDECL(int *best_index);
  275.    VARDECL(spx_word32_t *best_dist);
  276.    VARDECL(int *best_nind);
  277.    VARDECL(int *best_ntarget);
  278.    int have_sign;
  279.    N=complexity;
  280.    if (N>10)
  281.       N=10;
  282.    if (N<1)
  283.       N=1;
  284.    
  285.    if (N==1)
  286.    {
  287.       split_cb_search_shape_sign_N1(target,ak,awk1,awk2,par,p,nsf,exc,r,bits,stack,complexity,update_target);
  288.       return;
  289.    }
  290.    ALLOC(ot2, N, spx_word16_t*);
  291.    ALLOC(nt2, N, spx_word16_t*);
  292.    ALLOC(oind, N, int*);
  293.    ALLOC(nind, N, int*);
  294.    params = (const split_cb_params *) par;
  295.    subvect_size = params->subvect_size;
  296.    nb_subvect = params->nb_subvect;
  297.    shape_cb_size = 1<<params->shape_bits;
  298.    shape_cb = params->shape_cb;
  299.    have_sign = params->have_sign;
  300.    ALLOC(resp, shape_cb_size*subvect_size, spx_word16_t);
  301. #ifdef _USE_SSE
  302.    ALLOC(resp2, (shape_cb_size*subvect_size)>>2, __m128);
  303.    ALLOC(E, shape_cb_size>>2, __m128);
  304. #else
  305.    resp2 = resp;
  306.    ALLOC(E, shape_cb_size, spx_word32_t);
  307. #endif
  308.    ALLOC(t, nsf, spx_word16_t);
  309.    ALLOC(e, nsf, spx_sig_t);
  310.    ALLOC(r2, nsf, spx_sig_t);
  311.    ALLOC(ind, nb_subvect, int);
  312.    ALLOC(tmp, 2*N*nsf, spx_word16_t);
  313.    for (i=0;i<N;i++)
  314.    {
  315.       ot2[i]=tmp+2*i*nsf;
  316.       nt2[i]=tmp+(2*i+1)*nsf;
  317.    }
  318.    ot=ot2;
  319.    nt=nt2;
  320.    ALLOC(best_index, N, int);
  321.    ALLOC(best_dist, N, spx_word32_t);
  322.    ALLOC(best_nind, N, int);
  323.    ALLOC(best_ntarget, N, int);
  324.    ALLOC(ndist, N, spx_word32_t);
  325.    ALLOC(odist, N, spx_word32_t);
  326.    
  327.    ALLOC(itmp, 2*N*nb_subvect, int);
  328.    for (i=0;i<N;i++)
  329.    {
  330.       nind[i]=itmp+2*i*nb_subvect;
  331.       oind[i]=itmp+(2*i+1)*nb_subvect;
  332.    }
  333.    
  334.    /* FIXME: make that adaptive? */
  335.    for (i=0;i<nsf;i++)
  336.       t[i]=EXTRACT16(PSHR32(target[i],6));
  337.    for (j=0;j<N;j++)
  338.       speex_move(&ot[j][0], t, nsf*sizeof(spx_word16_t));
  339.    /* Pre-compute codewords response and energy */
  340.    compute_weighted_codebook(shape_cb, r, resp, resp2, E, shape_cb_size, subvect_size, stack);
  341.    for (j=0;j<N;j++)
  342.       odist[j]=0;
  343.    
  344.    /*For all subvectors*/
  345.    for (i=0;i<nb_subvect;i++)
  346.    {
  347.       /*"erase" nbest list*/
  348.       for (j=0;j<N;j++)
  349.          ndist[j]=VERY_LARGE32;
  350.       /*For all n-bests of previous subvector*/
  351.       for (j=0;j<N;j++)
  352.       {
  353.          spx_word16_t *x=ot[j]+subvect_size*i;
  354.          spx_word32_t tener = 0;
  355.          for (m=0;m<subvect_size;m++)
  356.             tener = MAC16_16(tener, x[m],x[m]);
  357. #ifdef FIXED_POINT
  358.          tener = SHR32(tener,1);
  359. #else
  360.          tener *= .5;
  361. #endif
  362.          /*Find new n-best based on previous n-best j*/
  363.          if (have_sign)
  364.             vq_nbest_sign(x, resp2, subvect_size, shape_cb_size, E, N, best_index, best_dist, stack);
  365.          else
  366.             vq_nbest(x, resp2, subvect_size, shape_cb_size, E, N, best_index, best_dist, stack);
  367.          /*For all new n-bests*/
  368.          for (k=0;k<N;k++)
  369.          {
  370.             /* Compute total distance (including previous sub-vectors */
  371.             spx_word32_t err = ADD32(ADD32(odist[j],best_dist[k]),tener);
  372.             
  373.             /*update n-best list*/
  374.             if (err<ndist[N-1])
  375.             {
  376.                for (m=0;m<N;m++)
  377.                {
  378.                   if (err < ndist[m])
  379.                   {
  380.                      for (n=N-1;n>m;n--)
  381.                      {
  382.                         ndist[n] = ndist[n-1];
  383.                         best_nind[n] = best_nind[n-1];
  384.                         best_ntarget[n] = best_ntarget[n-1];
  385.                      }
  386.                      ndist[m] = err;
  387.                      best_nind[n] = best_index[k];
  388.                      best_ntarget[n] = j;
  389.                      break;
  390.                   }
  391.                }
  392.             }
  393.          }
  394.          if (i==0)
  395.             break;
  396.       }
  397.       for (j=0;j<N;j++)
  398.       {
  399.          //spx_word16_t *ct = ot[best_ntarget[j]];
  400.          
  401.          /*previous target (we don't care what happened before*/
  402.          for (m=(i+1)*subvect_size;m<nsf;m++)
  403.             nt[j][m]=ot[best_ntarget[j]][m];
  404.          
  405.          /* New code: update the rest of the target only if it's worth it */
  406.          for (m=0;m<subvect_size;m++)
  407.          {
  408.             spx_word16_t g;
  409.             int rind;
  410.             spx_word16_t sign=1;
  411.             rind = best_nind[j];
  412.             if (rind>=shape_cb_size)
  413.             {
  414.                sign=-1;
  415.                rind-=shape_cb_size;
  416.             }
  417.             q=subvect_size-m;
  418. #ifdef FIXED_POINT
  419.             g=sign*shape_cb[rind*subvect_size+m];
  420.             target_update(nt[j]+subvect_size*(i+1), g, r+q, nsf-subvect_size*(i+1));
  421. #else
  422.             g=sign*0.03125*shape_cb[rind*subvect_size+m];
  423.             /*FIXME: I think that one too can be replaced by target_update */
  424.             for (n=subvect_size*(i+1);n<nsf;n++,q++)
  425.                nt[j][n] = SUB32(nt[j][n],g*r[q]);
  426. #endif
  427.          }
  428.          for (q=0;q<nb_subvect;q++)
  429.             nind[j][q]=oind[best_ntarget[j]][q];
  430.          nind[j][i]=best_nind[j];
  431.       }
  432.       /*update old-new data*/
  433.       /* just swap pointers instead of a long copy */
  434.       {
  435.          spx_word16_t **tmp2;
  436.          tmp2=ot;
  437.          ot=nt;
  438.          nt=tmp2;
  439.       }
  440.       for (j=0;j<N;j++)
  441.          for (m=0;m<nb_subvect;m++)
  442.             oind[j][m]=nind[j][m];
  443.       for (j=0;j<N;j++)
  444.          odist[j]=ndist[j];
  445.    }
  446.    /*save indices*/
  447.    for (i=0;i<nb_subvect;i++)
  448.    {
  449.       ind[i]=nind[0][i];
  450.       speex_bits_pack(bits,ind[i],params->shape_bits+have_sign);
  451.    }
  452.    
  453.    /* Put everything back together */
  454.    for (i=0;i<nb_subvect;i++)
  455.    {
  456.       int rind;
  457.       spx_word16_t sign=1;
  458.       rind = ind[i];
  459.       if (rind>=shape_cb_size)
  460.       {
  461.          sign=-1;
  462.          rind-=shape_cb_size;
  463.       }
  464. #ifdef FIXED_POINT
  465.       if (sign==1)
  466.       {
  467.          for (j=0;j<subvect_size;j++)
  468.             e[subvect_size*i+j]=SHL32(EXTEND32(shape_cb[rind*subvect_size+j]),SIG_SHIFT-5);
  469.       } else {
  470.          for (j=0;j<subvect_size;j++)
  471.             e[subvect_size*i+j]=NEG32(SHL32(EXTEND32(shape_cb[rind*subvect_size+j]),SIG_SHIFT-5));
  472.       }
  473. #else
  474.       for (j=0;j<subvect_size;j++)
  475.          e[subvect_size*i+j]=sign*0.03125*shape_cb[rind*subvect_size+j];
  476. #endif
  477.    }   
  478.    /* Update excitation */
  479.    for (j=0;j<nsf;j++)
  480.       exc[j]=ADD32(exc[j],e[j]);
  481.    
  482.    /* Update target: only update target if necessary */
  483.    if (update_target)
  484.    {
  485.       syn_percep_zero(e, ak, awk1, awk2, r2, nsf,p, stack);
  486.       for (j=0;j<nsf;j++)
  487.          target[j]=SUB32(target[j],r2[j]);
  488.    }
  489. }
  490. void split_cb_shape_sign_unquant(
  491. spx_sig_t *exc,
  492. const void *par,                      /* non-overlapping codebook */
  493. int   nsf,                      /* number of samples in subframe */
  494. SpeexBits *bits,
  495. char *stack
  496. )
  497. {
  498.    int i,j;
  499.    VARDECL(int *ind);
  500.    VARDECL(int *signs);
  501.    const signed char *shape_cb;
  502.    int shape_cb_size, subvect_size, nb_subvect;
  503.    const split_cb_params *params;
  504.    int have_sign;
  505.    params = (const split_cb_params *) par;
  506.    subvect_size = params->subvect_size;
  507.    nb_subvect = params->nb_subvect;
  508.    shape_cb_size = 1<<params->shape_bits;
  509.    shape_cb = params->shape_cb;
  510.    have_sign = params->have_sign;
  511.    ALLOC(ind, nb_subvect, int);
  512.    ALLOC(signs, nb_subvect, int);
  513.    /* Decode codewords and gains */
  514.    for (i=0;i<nb_subvect;i++)
  515.    {
  516.       if (have_sign)
  517.          signs[i] = speex_bits_unpack_unsigned(bits, 1);
  518.       else
  519.          signs[i] = 0;
  520.       ind[i] = speex_bits_unpack_unsigned(bits, params->shape_bits);
  521.    }
  522.    /* Compute decoded excitation */
  523.    for (i=0;i<nb_subvect;i++)
  524.    {
  525.       spx_word16_t s=1;
  526.       if (signs[i])
  527.          s=-1;
  528. #ifdef FIXED_POINT
  529.       if (s==1)
  530.       {
  531.          for (j=0;j<subvect_size;j++)
  532.             exc[subvect_size*i+j]=SHL32(EXTEND32(shape_cb[ind[i]*subvect_size+j]),SIG_SHIFT-5);
  533.       } else {
  534.          for (j=0;j<subvect_size;j++)
  535.             exc[subvect_size*i+j]=NEG32(SHL32(EXTEND32(shape_cb[ind[i]*subvect_size+j]),SIG_SHIFT-5));
  536.       }
  537. #else
  538.       for (j=0;j<subvect_size;j++)
  539.          exc[subvect_size*i+j]+=s*0.03125*shape_cb[ind[i]*subvect_size+j];      
  540. #endif
  541.    }
  542. }
  543. void noise_codebook_quant(
  544. spx_sig_t target[], /* target vector */
  545. spx_coef_t ak[], /* LPCs for this subframe */
  546. spx_coef_t awk1[], /* Weighted LPCs for this subframe */
  547. spx_coef_t awk2[], /* Weighted LPCs for this subframe */
  548. const void *par,                      /* Codebook/search parameters*/
  549. int   p,                        /* number of LPC coeffs */
  550. int   nsf,                      /* number of samples in subframe */
  551. spx_sig_t *exc,
  552. spx_word16_t *r,
  553. SpeexBits *bits,
  554. char *stack,
  555. int   complexity,
  556. int   update_target
  557. )
  558. {
  559.    int i;
  560.    VARDECL(spx_sig_t *tmp);
  561.    ALLOC(tmp, nsf, spx_sig_t);
  562.    residue_percep_zero(target, ak, awk1, awk2, tmp, nsf, p, stack);
  563.    for (i=0;i<nsf;i++)
  564.       exc[i]+=tmp[i];
  565.    for (i=0;i<nsf;i++)
  566.       target[i]=0;
  567. }
  568. void noise_codebook_unquant(
  569. spx_sig_t *exc,
  570. const void *par,                      /* non-overlapping codebook */
  571. int   nsf,                      /* number of samples in subframe */
  572. SpeexBits *bits,
  573. char *stack
  574. )
  575. {
  576.    speex_rand_vec(1, exc, nsf);
  577. }