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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: ltp.c
  3.    Long-Term Prediction functions
  4.    Redistribution and use in source and binary forms, with or without
  5.    modification, are permitted provided that the following conditions
  6.    are met:
  7.    
  8.    - Redistributions of source code must retain the above copyright
  9.    notice, this list of conditions and the following disclaimer.
  10.    
  11.    - Redistributions in binary form must reproduce the above copyright
  12.    notice, this list of conditions and the following disclaimer in the
  13.    documentation and/or other materials provided with the distribution.
  14.    
  15.    - Neither the name of the Xiph.org Foundation nor the names of its
  16.    contributors may be used to endorse or promote products derived from
  17.    this software without specific prior written permission.
  18.    
  19.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  23.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  27.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30. */
  31. #ifdef HAVE_CONFIG_H
  32. #include "config.h"
  33. #endif
  34. #include <math.h>
  35. #include "ltp.h"
  36. #include "stack_alloc.h"
  37. #include "filters.h"
  38. #include <speex/speex_bits.h>
  39. #include "math_approx.h"
  40. #ifndef NULL
  41. #define NULL 0
  42. #endif
  43. #ifdef _USE_SSE
  44. #include "ltp_sse.h"
  45. #elif defined (ARM4_ASM) || defined(ARM5E_ASM)
  46. #include "ltp_arm4.h"
  47. #elif defined (BFIN_ASM)
  48. #include "ltp_bfin.h"
  49. #endif
  50. #ifndef OVERRIDE_INNER_PROD
  51. static spx_word32_t inner_prod(const spx_word16_t *x, const spx_word16_t *y, int len)
  52. {
  53.    spx_word32_t sum=0;
  54.    len >>= 2;
  55.    while(len--)
  56.    {
  57.       spx_word32_t part=0;
  58.       part = MAC16_16(part,*x++,*y++);
  59.       part = MAC16_16(part,*x++,*y++);
  60.       part = MAC16_16(part,*x++,*y++);
  61.       part = MAC16_16(part,*x++,*y++);
  62.       /* HINT: If you had a 40-bit accumulator, you could shift only at the end */
  63.       sum = ADD32(sum,SHR32(part,6));
  64.    }
  65.    return sum;
  66. }
  67. #endif
  68. #ifndef OVERRIDE_PITCH_XCORR
  69. #if 0 /* HINT: Enable this for machines with enough registers (i.e. not x86) */
  70. static void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack)
  71. {
  72.    int i,j;
  73.    for (i=0;i<nb_pitch;i+=4)
  74.    {
  75.       /* Compute correlation*/
  76.       /*corr[nb_pitch-1-i]=inner_prod(x, _y+i, len);*/
  77.       spx_word32_t sum1=0;
  78.       spx_word32_t sum2=0;
  79.       spx_word32_t sum3=0;
  80.       spx_word32_t sum4=0;
  81.       const spx_word16_t *y = _y+i;
  82.       const spx_word16_t *x = _x;
  83.       spx_word16_t y0, y1, y2, y3;
  84.       /*y0=y[0];y1=y[1];y2=y[2];y3=y[3];*/
  85.       y0=*y++;
  86.       y1=*y++;
  87.       y2=*y++;
  88.       y3=*y++;
  89.       for (j=0;j<len;j+=4)
  90.       {
  91.          spx_word32_t part1;
  92.          spx_word32_t part2;
  93.          spx_word32_t part3;
  94.          spx_word32_t part4;
  95.          part1 = MULT16_16(*x,y0);
  96.          part2 = MULT16_16(*x,y1);
  97.          part3 = MULT16_16(*x,y2);
  98.          part4 = MULT16_16(*x,y3);
  99.          x++;
  100.          y0=*y++;
  101.          part1 = MAC16_16(part1,*x,y1);
  102.          part2 = MAC16_16(part2,*x,y2);
  103.          part3 = MAC16_16(part3,*x,y3);
  104.          part4 = MAC16_16(part4,*x,y0);
  105.          x++;
  106.          y1=*y++;
  107.          part1 = MAC16_16(part1,*x,y2);
  108.          part2 = MAC16_16(part2,*x,y3);
  109.          part3 = MAC16_16(part3,*x,y0);
  110.          part4 = MAC16_16(part4,*x,y1);
  111.          x++;
  112.          y2=*y++;
  113.          part1 = MAC16_16(part1,*x,y3);
  114.          part2 = MAC16_16(part2,*x,y0);
  115.          part3 = MAC16_16(part3,*x,y1);
  116.          part4 = MAC16_16(part4,*x,y2);
  117.          x++;
  118.          y3=*y++;
  119.          
  120.          sum1 = ADD32(sum1,SHR32(part1,6));
  121.          sum2 = ADD32(sum2,SHR32(part2,6));
  122.          sum3 = ADD32(sum3,SHR32(part3,6));
  123.          sum4 = ADD32(sum4,SHR32(part4,6));
  124.       }
  125.       corr[nb_pitch-1-i]=sum1;
  126.       corr[nb_pitch-2-i]=sum2;
  127.       corr[nb_pitch-3-i]=sum3;
  128.       corr[nb_pitch-4-i]=sum4;
  129.    }
  130. }
  131. #else
  132. static void pitch_xcorr(const spx_word16_t *_x, const spx_word16_t *_y, spx_word32_t *corr, int len, int nb_pitch, char *stack)
  133. {
  134.    int i;
  135.    for (i=0;i<nb_pitch;i++)
  136.    {
  137.       /* Compute correlation*/
  138.       corr[nb_pitch-1-i]=inner_prod(_x, _y+i, len);
  139.    }
  140. }
  141. #endif
  142. #endif
  143. #ifndef OVERRIDE_COMPUTE_PITCH_ERROR
  144. static inline spx_word32_t compute_pitch_error(spx_word32_t *C, spx_word16_t *g, spx_word16_t pitch_control)
  145. {
  146.    spx_word32_t sum = 0;
  147.    sum = ADD32(sum,MULT16_32_Q15(MULT16_16_16(g[0],pitch_control),C[0]));
  148.    sum = ADD32(sum,MULT16_32_Q15(MULT16_16_16(g[1],pitch_control),C[1]));
  149.    sum = ADD32(sum,MULT16_32_Q15(MULT16_16_16(g[2],pitch_control),C[2]));
  150.    sum = SUB32(sum,MULT16_32_Q15(MULT16_16_16(g[0],g[1]),C[3]));
  151.    sum = SUB32(sum,MULT16_32_Q15(MULT16_16_16(g[2],g[1]),C[4]));
  152.    sum = SUB32(sum,MULT16_32_Q15(MULT16_16_16(g[2],g[0]),C[5]));
  153.    sum = SUB32(sum,MULT16_32_Q15(MULT16_16_16(g[0],g[0]),C[6]));
  154.    sum = SUB32(sum,MULT16_32_Q15(MULT16_16_16(g[1],g[1]),C[7]));
  155.    sum = SUB32(sum,MULT16_32_Q15(MULT16_16_16(g[2],g[2]),C[8]));
  156.    return sum;
  157. }
  158. #endif
  159. void open_loop_nbest_pitch(spx_sig_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack)
  160. {
  161.    int i,j,k;
  162.    VARDECL(spx_word32_t *best_score);
  163.    spx_word32_t e0;
  164.    VARDECL(spx_word32_t *corr);
  165.    VARDECL(spx_word32_t *energy);
  166.    VARDECL(spx_word32_t *score);
  167.    VARDECL(spx_word16_t *swn2);
  168.    spx_word16_t *swn;
  169.    ALLOC(best_score, N, spx_word32_t);
  170.    ALLOC(corr, end-start+1, spx_word32_t);
  171.    ALLOC(energy, end-start+2, spx_word32_t);
  172.    ALLOC(score, end-start+1, spx_word32_t);
  173. #ifdef FIXED_POINT
  174.    ALLOC(swn2, end+len, spx_word16_t);
  175.    normalize16(sw-end, swn2, 16384, end+len);
  176.    swn = swn2 + end;
  177. #else
  178.    swn = sw;
  179. #endif
  180.    for (i=0;i<N;i++)
  181.    {
  182.         best_score[i]=-1;
  183.         pitch[i]=start;
  184.    }
  185.    energy[0]=inner_prod(swn-start, swn-start, len);
  186.    e0=inner_prod(swn, swn, len);
  187.    for (i=start;i<=end;i++)
  188.    {
  189.       /* Update energy for next pitch*/
  190.       energy[i-start+1] = SUB32(ADD32(energy[i-start],SHR32(MULT16_16(swn[-i-1],swn[-i-1]),6)), SHR32(MULT16_16(swn[-i+len-1],swn[-i+len-1]),6));
  191.    }
  192.    pitch_xcorr(swn, swn-end, corr, len, end-start+1, stack);
  193. #ifdef FIXED_POINT
  194.    {
  195.       VARDECL(spx_word16_t *corr16);
  196.       VARDECL(spx_word16_t *ener16);
  197.       ALLOC(corr16, end-start+1, spx_word16_t);
  198.       ALLOC(ener16, end-start+1, spx_word16_t);
  199.       normalize16(corr, corr16, 16384, end-start+1);
  200.       normalize16(energy, ener16, 16384, end-start+1);
  201.       for (i=start;i<=end;i++)
  202.       {
  203.          spx_word16_t g;
  204.          spx_word32_t tmp;
  205.          tmp = corr16[i-start];
  206.          if (tmp>0)
  207.          {
  208.             if (SHR16(corr16[i-start],4)>ener16[i-start])
  209.                tmp = SHL32(EXTEND32(ener16[i-start]),14);
  210.             else if (-SHR16(corr16[i-start],4)>ener16[i-start])
  211.                tmp = -SHL32(EXTEND32(ener16[i-start]),14);
  212.             else
  213.                tmp = SHL32(tmp,10);
  214.             g = DIV32_16(tmp, 8+ener16[i-start]);
  215.             score[i-start] = MULT16_16(corr16[i-start],g);
  216.          } else
  217.          {
  218.             score[i-start] = 1;
  219.          }
  220.       }
  221.    }
  222. #else
  223.    for (i=start;i<=end;i++)
  224.    {
  225.       float g = corr[i-start]/(1+energy[i-start]);
  226.       if (g>16)
  227.          g = 16;
  228.       else if (g<-16)
  229.          g = -16;
  230.       score[i-start] = g*corr[i-start];
  231.    }
  232. #endif
  233.    /* Extract best scores */
  234.    for (i=start;i<=end;i++)
  235.    {
  236.       if (score[i-start]>best_score[N-1])
  237.       {
  238.          for (j=0;j<N;j++)
  239.          {
  240.             if (score[i-start] > best_score[j])
  241.             {
  242.                for (k=N-1;k>j;k--)
  243.                {
  244.                   best_score[k]=best_score[k-1];
  245.                   pitch[k]=pitch[k-1];
  246.                }
  247.                best_score[j]=score[i-start];
  248.                pitch[j]=i;
  249.                break;
  250.             }
  251.          }
  252.       }
  253.    }
  254.    /* Compute open-loop gain */
  255.    if (gain)
  256.    {
  257.        for (j=0;j<N;j++)
  258.        {
  259.           spx_word16_t g;
  260.           i=pitch[j];
  261.           g = DIV32(corr[i-start], 10+SHR32(MULT16_16(spx_sqrt(e0),spx_sqrt(energy[i-start])),6));
  262.           /* FIXME: g = max(g,corr/energy) */
  263.                    if (g<0)
  264.                    g = 0;
  265.              gain[j]=g;
  266.        }
  267.    }
  268. }
  269. /** Finds the best quantized 3-tap pitch predictor by analysis by synthesis */
  270. static spx_word64_t pitch_gain_search_3tap(
  271. const spx_sig_t target[],       /* Target vector */
  272. const spx_coef_t ak[],          /* LPCs for this subframe */
  273. const spx_coef_t awk1[],        /* Weighted LPCs #1 for this subframe */
  274. const spx_coef_t awk2[],        /* Weighted LPCs #2 for this subframe */
  275. spx_sig_t exc[],                /* Excitation */
  276. const void *par,
  277. int   pitch,                    /* Pitch value */
  278. int   p,                        /* Number of LPC coeffs */
  279. int   nsf,                      /* Number of samples in subframe */
  280. SpeexBits *bits,
  281. char *stack,
  282. const spx_sig_t *exc2,
  283. const spx_word16_t *r,
  284. spx_sig_t *new_target,
  285. int  *cdbk_index,
  286. int cdbk_offset,
  287. int plc_tuning
  288. )
  289. {
  290.    int i,j;
  291.    VARDECL(spx_sig_t *tmp1);
  292.    VARDECL(spx_sig_t *tmp2);
  293.    spx_sig_t *x[3];
  294.    spx_sig_t *e[3];
  295.    spx_word32_t corr[3];
  296.    spx_word32_t A[3][3];
  297.    int   gain_cdbk_size;
  298.    const signed char *gain_cdbk;
  299.    spx_word16_t gain[3];
  300.    spx_word64_t err;
  301.    const ltp_params *params;
  302.    params = (const ltp_params*) par;
  303.    gain_cdbk_size = 1<<params->gain_bits;
  304.    gain_cdbk = params->gain_cdbk + 3*gain_cdbk_size*cdbk_offset;
  305.    ALLOC(tmp1, 3*nsf, spx_sig_t);
  306.    ALLOC(tmp2, 3*nsf, spx_sig_t);
  307.    x[0]=tmp1;
  308.    x[1]=tmp1+nsf;
  309.    x[2]=tmp1+2*nsf;
  310.    
  311.    e[0]=tmp2;
  312.    e[1]=tmp2+nsf;
  313.    e[2]=tmp2+2*nsf;
  314.    for (i=2;i>=0;i--)
  315.    {
  316.       int pp=pitch+1-i;
  317.       for (j=0;j<nsf;j++)
  318.       {
  319.          if (j-pp<0)
  320.             e[i][j]=exc2[j-pp];
  321.          else if (j-pp-pitch<0)
  322.             e[i][j]=exc2[j-pp-pitch];
  323.          else
  324.             e[i][j]=0;
  325.       }
  326.       if (i==2)
  327.          syn_percep_zero(e[i], ak, awk1, awk2, x[i], nsf, p, stack);
  328.       else {
  329.          for (j=0;j<nsf-1;j++)
  330.             x[i][j+1]=x[i+1][j];
  331.          x[i][0]=0;
  332.          for (j=0;j<nsf;j++)
  333.          {
  334.             x[i][j]=ADD32(x[i][j],SHL32(MULT16_32_Q15(r[j], e[i][0]),1));
  335.          }
  336.       }
  337.    }
  338. #ifdef FIXED_POINT
  339.    {
  340.       /* If using fixed-point, we need to normalize the signals first */
  341.       spx_word16_t *y[3];
  342.       VARDECL(spx_word16_t *ytmp);
  343.       VARDECL(spx_word16_t *t);
  344.       spx_sig_t max_val=1;
  345.       int sig_shift;
  346.       
  347.       ALLOC(ytmp, 3*nsf, spx_word16_t);
  348. #if 0
  349.       ALLOC(y[0], nsf, spx_word16_t);
  350.       ALLOC(y[1], nsf, spx_word16_t);
  351.       ALLOC(y[2], nsf, spx_word16_t);
  352. #else
  353.       y[0] = ytmp;
  354.       y[1] = ytmp+nsf;
  355.       y[2] = ytmp+2*nsf;
  356. #endif
  357.       ALLOC(t, nsf, spx_word16_t);
  358.       for (j=0;j<3;j++)
  359.       {
  360.          for (i=0;i<nsf;i++)
  361.          {
  362.             spx_sig_t tmp = x[j][i];
  363.             if (tmp<0)
  364.                tmp = -tmp;
  365.             if (tmp > max_val)
  366.                max_val = tmp;
  367.          }
  368.       }
  369.       for (i=0;i<nsf;i++)
  370.       {
  371.          spx_sig_t tmp = target[i];
  372.          if (tmp<0)
  373.             tmp = -tmp;
  374.          if (tmp > max_val)
  375.             max_val = tmp;
  376.       }
  377.       sig_shift=0;
  378.       while (max_val>16384)
  379.       {
  380.          sig_shift++;
  381.          max_val >>= 1;
  382.       }
  383.       for (j=0;j<3;j++)
  384.       {
  385.          for (i=0;i<nsf;i++)
  386.          {
  387.             y[j][i] = EXTRACT16(SHR32(x[j][i],sig_shift));
  388.          }
  389.       }
  390.       for (i=0;i<nsf;i++)
  391.       {
  392.          t[i] = EXTRACT16(SHR32(target[i],sig_shift));
  393.       }
  394.       for (i=0;i<3;i++)
  395.          corr[i]=inner_prod(y[i],t,nsf);
  396.       
  397.       for (i=0;i<3;i++)
  398.          for (j=0;j<=i;j++)
  399.             A[i][j]=A[j][i]=inner_prod(y[i],y[j],nsf);
  400.    }
  401. #else
  402.    {
  403.       for (i=0;i<3;i++)
  404.          corr[i]=inner_prod(x[i],target,nsf);
  405.       
  406.       for (i=0;i<3;i++)
  407.          for (j=0;j<=i;j++)
  408.             A[i][j]=A[j][i]=inner_prod(x[i],x[j],nsf);
  409.    }
  410. #endif
  411.    {
  412.       spx_word32_t C[9];
  413.       const signed char *ptr=gain_cdbk;
  414.       int best_cdbk=0;
  415.       spx_word32_t best_sum=0;
  416.       C[0]=corr[2];
  417.       C[1]=corr[1];
  418.       C[2]=corr[0];
  419.       C[3]=A[1][2];
  420.       C[4]=A[0][1];
  421.       C[5]=A[0][2];      
  422.       C[6]=A[2][2];
  423.       C[7]=A[1][1];
  424.       C[8]=A[0][0];
  425.       
  426.       /*plc_tuning *= 2;*/
  427.       if (plc_tuning<2)
  428.          plc_tuning=2;
  429. #ifdef FIXED_POINT
  430.       C[0] = MAC16_32_Q15(C[0],MULT16_16_16(plc_tuning,-327),C[0]);
  431.       C[1] = MAC16_32_Q15(C[1],MULT16_16_16(plc_tuning,-327),C[1]);
  432.       C[2] = MAC16_32_Q15(C[2],MULT16_16_16(plc_tuning,-327),C[2]);
  433.       C[0] = SHL32(C[0],1);
  434.       C[1] = SHL32(C[1],1);
  435.       C[2] = SHL32(C[2],1);
  436.       C[3] = SHL32(C[3],1);
  437.       C[4] = SHL32(C[4],1);
  438.       C[5] = SHL32(C[5],1);
  439. #else
  440.       C[0]*=1-.01*plc_tuning;
  441.       C[1]*=1-.01*plc_tuning;
  442.       C[2]*=1-.01*plc_tuning;
  443.       C[6]*=.5*(1+.01*plc_tuning);
  444.       C[7]*=.5*(1+.01*plc_tuning);
  445.       C[8]*=.5*(1+.01*plc_tuning);
  446. #endif
  447.       for (i=0;i<gain_cdbk_size;i++)
  448.       {
  449.          spx_word32_t sum=0;
  450.          spx_word16_t g[3];
  451.          spx_word16_t pitch_control=64;
  452.          spx_word16_t gain_sum;
  453.          
  454.          ptr = gain_cdbk+3*i;
  455.          g[0]=ADD16((spx_word16_t)ptr[0],32);
  456.          g[1]=ADD16((spx_word16_t)ptr[1],32);
  457.          g[2]=ADD16((spx_word16_t)ptr[2],32);
  458.          /* We favor "safe" pitch values to handle packet loss better */
  459.          gain_sum = ADD16(ADD16(g[1],MAX16(g[0], 0)),MAX16(g[2], 0));
  460.          if (gain_sum > 64)
  461.          {
  462.             gain_sum = SUB16(gain_sum, 64);
  463.             if (gain_sum > 127)
  464.                gain_sum = 127;
  465. #ifdef FIXED_POINT
  466.             pitch_control =  SUB16(64,EXTRACT16(PSHR32(MULT16_16(64,MULT16_16_16(plc_tuning, gain_sum)),10)));
  467. #else
  468.             pitch_control = 64*(1.-.001*plc_tuning*gain_sum);
  469. #endif
  470.             if (pitch_control < 0)
  471.                pitch_control = 0;
  472.          }
  473.          
  474.          sum = compute_pitch_error(C, g, pitch_control);
  475.          
  476.          if (sum>best_sum || i==0)
  477.          {
  478.             best_sum=sum;
  479.             best_cdbk=i;
  480.          }
  481.       }
  482. #ifdef FIXED_POINT
  483.       gain[0] = ADD16(32,(spx_word16_t)gain_cdbk[best_cdbk*3]);
  484.       gain[1] = ADD16(32,(spx_word16_t)gain_cdbk[best_cdbk*3+1]);
  485.       gain[2] = ADD16(32,(spx_word16_t)gain_cdbk[best_cdbk*3+2]);
  486.       /*printf ("%d %d %d %dn",gain[0],gain[1],gain[2], best_cdbk);*/
  487. #else
  488.       gain[0] = 0.015625*gain_cdbk[best_cdbk*3]  + .5;
  489.       gain[1] = 0.015625*gain_cdbk[best_cdbk*3+1]+ .5;
  490.       gain[2] = 0.015625*gain_cdbk[best_cdbk*3+2]+ .5;
  491. #endif
  492.       *cdbk_index=best_cdbk;
  493.    }
  494. #ifdef FIXED_POINT
  495.    for (i=0;i<nsf;i++)
  496.      exc[i]=SHL32(ADD32(ADD32(MULT16_32_Q15(SHL16(gain[0],7),e[2][i]), MULT16_32_Q15(SHL16(gain[1],7),e[1][i])),
  497.                         MULT16_32_Q15(SHL16(gain[2],7),e[0][i])), 2);
  498.    
  499.    err=0;
  500.    for (i=0;i<nsf;i++)
  501.    {
  502.       spx_word16_t perr2;
  503.       spx_sig_t tmp = SHL32(ADD32(ADD32(MULT16_32_Q15(SHL16(gain[0],7),x[2][i]),MULT16_32_Q15(SHL16(gain[1],7),x[1][i])),
  504.                                   MULT16_32_Q15(SHL16(gain[2],7),x[0][i])),2);
  505.       spx_sig_t perr=SUB32(target[i],tmp);
  506.       new_target[i] = SUB32(target[i], tmp);
  507.       perr2 = EXTRACT16(PSHR32(perr,15));
  508.       err = ADD64(err,MULT16_16(perr2,perr2));
  509.       
  510.    }
  511. #else
  512.    for (i=0;i<nsf;i++)
  513.       exc[i]=gain[0]*e[2][i]+gain[1]*e[1][i]+gain[2]*e[0][i];
  514.    
  515.    err=0;
  516.    for (i=0;i<nsf;i++)
  517.    {
  518.       spx_sig_t tmp = gain[2]*x[0][i]+gain[1]*x[1][i]+gain[0]*x[2][i];
  519.       new_target[i] = target[i] - tmp;
  520.       err+=new_target[i]*new_target[i];
  521.    }
  522. #endif
  523.    return err;
  524. }
  525. /** Finds the best quantized 3-tap pitch predictor by analysis by synthesis */
  526. int pitch_search_3tap(
  527. spx_sig_t target[],                 /* Target vector */
  528. spx_sig_t *sw,
  529. spx_coef_t ak[],                     /* LPCs for this subframe */
  530. spx_coef_t awk1[],                   /* Weighted LPCs #1 for this subframe */
  531. spx_coef_t awk2[],                   /* Weighted LPCs #2 for this subframe */
  532. spx_sig_t exc[],                    /* Excitation */
  533. const void *par,
  534. int   start,                    /* Smallest pitch value allowed */
  535. int   end,                      /* Largest pitch value allowed */
  536. spx_word16_t pitch_coef,               /* Voicing (pitch) coefficient */
  537. int   p,                        /* Number of LPC coeffs */
  538. int   nsf,                      /* Number of samples in subframe */
  539. SpeexBits *bits,
  540. char *stack,
  541. spx_sig_t *exc2,
  542. spx_word16_t *r,
  543. int complexity,
  544. int cdbk_offset,
  545. int plc_tuning
  546. )
  547. {
  548.    int i,j;
  549.    int cdbk_index, pitch=0, best_gain_index=0;
  550.    VARDECL(spx_sig_t *best_exc);
  551.    VARDECL(spx_sig_t *new_target);
  552.    VARDECL(spx_sig_t *best_target);
  553.    int best_pitch=0;
  554.    spx_word64_t err, best_err=-1;
  555.    int N;
  556.    const ltp_params *params;
  557.    VARDECL(int *nbest);
  558.    N=complexity;
  559.    if (N>10)
  560.       N=10;
  561.    if (N<1)
  562.       N=1;
  563.    ALLOC(nbest, N, int);
  564.    params = (const ltp_params*) par;
  565.    if (end<start)
  566.    {
  567.       speex_bits_pack(bits, 0, params->pitch_bits);
  568.       speex_bits_pack(bits, 0, params->gain_bits);
  569.       for (i=0;i<nsf;i++)
  570.          exc[i]=0;
  571.       return start;
  572.    }
  573.    
  574.    ALLOC(best_exc, nsf, spx_sig_t);
  575.    ALLOC(new_target, nsf, spx_sig_t);
  576.    ALLOC(best_target, nsf, spx_sig_t);
  577.    
  578.    if (N>end-start+1)
  579.       N=end-start+1;
  580.    if (end != start)
  581.       open_loop_nbest_pitch(sw, start, end, nsf, nbest, NULL, N, stack);
  582.    else
  583.       nbest[0] = start;
  584.    for (i=0;i<N;i++)
  585.    {
  586.       pitch=nbest[i];
  587.       for (j=0;j<nsf;j++)
  588.          exc[j]=0;
  589.       err=pitch_gain_search_3tap(target, ak, awk1, awk2, exc, par, pitch, p, nsf,
  590.                                  bits, stack, exc2, r, new_target, &cdbk_index, cdbk_offset, plc_tuning);
  591.       if (err<best_err || best_err<0)
  592.       {
  593.          for (j=0;j<nsf;j++)
  594.             best_exc[j]=exc[j];
  595.          for (j=0;j<nsf;j++)
  596.             best_target[j]=new_target[j];
  597.          best_err=err;
  598.          best_pitch=pitch;
  599.          best_gain_index=cdbk_index;
  600.       }
  601.    }
  602.    
  603.    /*printf ("pitch: %d %dn", best_pitch, best_gain_index);*/
  604.    speex_bits_pack(bits, best_pitch-start, params->pitch_bits);
  605.    speex_bits_pack(bits, best_gain_index, params->gain_bits);
  606.    /*printf ("encode pitch: %d %dn", best_pitch, best_gain_index);*/
  607.    for (i=0;i<nsf;i++)
  608.       exc[i]=best_exc[i];
  609.    for (i=0;i<nsf;i++)
  610.       target[i]=best_target[i];
  611.    return pitch;
  612. }
  613. void pitch_unquant_3tap(
  614. spx_sig_t exc[],                    /* Excitation */
  615. int   start,                    /* Smallest pitch value allowed */
  616. int   end,                      /* Largest pitch value allowed */
  617. spx_word16_t pitch_coef,               /* Voicing (pitch) coefficient */
  618. const void *par,
  619. int   nsf,                      /* Number of samples in subframe */
  620. int *pitch_val,
  621. spx_word16_t *gain_val,
  622. SpeexBits *bits,
  623. char *stack,
  624. int count_lost,
  625. int subframe_offset,
  626. spx_word16_t last_pitch_gain,
  627. int cdbk_offset
  628. )
  629. {
  630.    int i;
  631.    int pitch;
  632.    int gain_index;
  633.    spx_word16_t gain[3];
  634.    const signed char *gain_cdbk;
  635.    int gain_cdbk_size;
  636.    const ltp_params *params;
  637.    params = (const ltp_params*) par;
  638.    gain_cdbk_size = 1<<params->gain_bits;
  639.    gain_cdbk = params->gain_cdbk + 3*gain_cdbk_size*cdbk_offset;
  640.    pitch = speex_bits_unpack_unsigned(bits, params->pitch_bits);
  641.    pitch += start;
  642.    gain_index = speex_bits_unpack_unsigned(bits, params->gain_bits);
  643.    /*printf ("decode pitch: %d %dn", pitch, gain_index);*/
  644. #ifdef FIXED_POINT
  645.    gain[0] = ADD16(32,(spx_word16_t)gain_cdbk[gain_index*3]);
  646.    gain[1] = ADD16(32,(spx_word16_t)gain_cdbk[gain_index*3+1]);
  647.    gain[2] = ADD16(32,(spx_word16_t)gain_cdbk[gain_index*3+2]);
  648. #else
  649.    gain[0] = 0.015625*gain_cdbk[gain_index*3]+.5;
  650.    gain[1] = 0.015625*gain_cdbk[gain_index*3+1]+.5;
  651.    gain[2] = 0.015625*gain_cdbk[gain_index*3+2]+.5;
  652. #endif
  653.    if (count_lost && pitch > subframe_offset)
  654.    {
  655.       spx_word16_t gain_sum;
  656.       if (1) {
  657. #ifdef FIXED_POINT
  658.          spx_word16_t tmp = count_lost < 4 ? last_pitch_gain : SHR16(last_pitch_gain,1);
  659.          if (tmp>62)
  660.             tmp=62;
  661. #else
  662.          spx_word16_t tmp = count_lost < 4 ? last_pitch_gain : 0.5 * last_pitch_gain;
  663.          if (tmp>.95)
  664.             tmp=.95;
  665. #endif
  666.          gain_sum = gain_3tap_to_1tap(gain);
  667.          if (gain_sum > tmp)
  668.          {
  669.             spx_word16_t fact = DIV32_16(SHL32(EXTEND32(tmp),14),gain_sum);
  670.             for (i=0;i<3;i++)
  671.                gain[i]=MULT16_16_Q14(fact,gain[i]);
  672.          }
  673.       }
  674.    }
  675.    *pitch_val = pitch;
  676.    gain_val[0]=gain[0];
  677.    gain_val[1]=gain[1];
  678.    gain_val[2]=gain[2];
  679.    {
  680.       spx_sig_t *e[3];
  681.       VARDECL(spx_sig_t *tmp2);
  682.       ALLOC(tmp2, 3*nsf, spx_sig_t);
  683.       e[0]=tmp2;
  684.       e[1]=tmp2+nsf;
  685.       e[2]=tmp2+2*nsf;
  686.       
  687.       for (i=0;i<3;i++)
  688.       {
  689.          int j;
  690.          int pp=pitch+1-i;
  691. #if 0
  692.          for (j=0;j<nsf;j++)
  693.          {
  694.             if (j-pp<0)
  695.                e[i][j]=exc[j-pp];
  696.             else if (j-pp-pitch<0)
  697.                e[i][j]=exc[j-pp-pitch];
  698.             else
  699.                e[i][j]=0;
  700.          }
  701. #else
  702.          {
  703.             int tmp1, tmp3;
  704.             tmp1=nsf;
  705.             if (tmp1>pp)
  706.                tmp1=pp;
  707.             for (j=0;j<tmp1;j++)
  708.                e[i][j]=exc[j-pp];
  709.             tmp3=nsf;
  710.             if (tmp3>pp+pitch)
  711.                tmp3=pp+pitch;
  712.             for (j=tmp1;j<tmp3;j++)
  713.                e[i][j]=exc[j-pp-pitch];
  714.             for (j=tmp3;j<nsf;j++)
  715.                e[i][j]=0;
  716.          }
  717. #endif
  718.       }
  719. #ifdef FIXED_POINT
  720.       {
  721.          for (i=0;i<nsf;i++)
  722.             exc[i]=SHL32(ADD32(ADD32(MULT16_32_Q15(SHL16(gain[0],7),e[2][i]), MULT16_32_Q15(SHL16(gain[1],7),e[1][i])),
  723.                                MULT16_32_Q15(SHL16(gain[2],7),e[0][i])), 2);
  724.       }
  725. #else
  726.       for (i=0;i<nsf;i++)
  727.          exc[i]=VERY_SMALL+gain[0]*e[2][i]+gain[1]*e[1][i]+gain[2]*e[0][i];
  728. #endif
  729.    }
  730. }
  731. /** Forced pitch delay and gain */
  732. int forced_pitch_quant(
  733. spx_sig_t target[],                 /* Target vector */
  734. spx_sig_t *sw,
  735. spx_coef_t ak[],                     /* LPCs for this subframe */
  736. spx_coef_t awk1[],                   /* Weighted LPCs #1 for this subframe */
  737. spx_coef_t awk2[],                   /* Weighted LPCs #2 for this subframe */
  738. spx_sig_t exc[],                    /* Excitation */
  739. const void *par,
  740. int   start,                    /* Smallest pitch value allowed */
  741. int   end,                      /* Largest pitch value allowed */
  742. spx_word16_t pitch_coef,               /* Voicing (pitch) coefficient */
  743. int   p,                        /* Number of LPC coeffs */
  744. int   nsf,                      /* Number of samples in subframe */
  745. SpeexBits *bits,
  746. char *stack,
  747. spx_sig_t *exc2,
  748. spx_word16_t *r,
  749. int complexity,
  750. int cdbk_offset,
  751. int plc_tuning
  752. )
  753. {
  754.    int i;
  755.    float coef = GAIN_SCALING_1*pitch_coef;
  756.    if (coef>.99)
  757.       coef=.99;
  758.    for (i=0;i<nsf;i++)
  759.    {
  760.       exc[i]=exc[i-start]*coef;
  761.    }
  762.    return start;
  763. }
  764. /** Unquantize forced pitch delay and gain */
  765. void forced_pitch_unquant(
  766. spx_sig_t exc[],                    /* Excitation */
  767. int   start,                    /* Smallest pitch value allowed */
  768. int   end,                      /* Largest pitch value allowed */
  769. spx_word16_t pitch_coef,               /* Voicing (pitch) coefficient */
  770. const void *par,
  771. int   nsf,                      /* Number of samples in subframe */
  772. int *pitch_val,
  773. spx_word16_t *gain_val,
  774. SpeexBits *bits,
  775. char *stack,
  776. int count_lost,
  777. int subframe_offset,
  778. spx_word16_t last_pitch_gain,
  779. int cdbk_offset
  780. )
  781. {
  782.    int i;
  783.    float coef = GAIN_SCALING_1*pitch_coef;
  784.    if (coef>.99)
  785.       coef=.99;
  786.    for (i=0;i<nsf;i++)
  787.    {
  788.       exc[i]=exc[i-start]*coef;
  789.    }
  790.    *pitch_val = start;
  791.    gain_val[0]=gain_val[2]=0;
  792.    gain_val[1] = pitch_coef;
  793. }