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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin 
  2.    File: quant_lsp.c
  3.    LSP vector quantization
  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 "quant_lsp.h"
  35. #include <math.h>
  36. #ifndef M_PI
  37. #define M_PI 3.14159265358979323846
  38. #endif
  39. #include "misc.h"
  40. #ifdef FIXED_POINT
  41. #define LSP_LINEAR(i) (SHL16(i+1,11))
  42. #define LSP_LINEAR_HIGH(i) (ADD16(MULT16_16_16(i,2560),6144))
  43. #define LSP_DIV_256(x) (SHL16((spx_word16_t)x, 5))
  44. #define LSP_DIV_512(x) (SHL16((spx_word16_t)x, 4))
  45. #define LSP_DIV_1024(x) (SHL16((spx_word16_t)x, 3))
  46. #define LSP_PI 25736
  47. #else
  48. #define LSP_LINEAR(i) (.25*(i)+.25)
  49. #define LSP_LINEAR_HIGH(i) (.3125*(i)+.75)
  50. #define LSP_SCALE 256.
  51. #define LSP_DIV_256(x) (0.0039062*(x))
  52. #define LSP_DIV_512(x) (0.0019531*(x))
  53. #define LSP_DIV_1024(x) (0.00097656*(x))
  54. #define LSP_PI M_PI
  55. #endif
  56. static void compute_quant_weights(spx_lsp_t *qlsp, spx_word16_t *quant_weight, int order)
  57. {
  58.    int i;
  59.    spx_word16_t tmp1, tmp2;
  60.    for (i=0;i<order;i++)
  61.    {
  62.       if (i==0)
  63.          tmp1 = qlsp[i];
  64.       else
  65.          tmp1 = qlsp[i]-qlsp[i-1];
  66.       if (i==order-1)
  67.          tmp2 = LSP_PI-qlsp[i];
  68.       else
  69.          tmp2 = qlsp[i+1]-qlsp[i];
  70.       if (tmp2<tmp1)
  71.          tmp1 = tmp2;
  72. #ifdef FIXED_POINT
  73.       quant_weight[i] = DIV32_16(81920,ADD16(300,tmp1));
  74. #else
  75.       quant_weight[i] = 10/(.04+tmp1);
  76. #endif
  77.    }
  78. }
  79. /* Note: x is modified*/
  80. static int lsp_quant(spx_word16_t *x, const signed char *cdbk, int nbVec, int nbDim)
  81. {
  82.    int i,j;
  83.    spx_word32_t dist;
  84.    spx_word16_t tmp;
  85.    spx_word32_t best_dist=0;
  86.    int best_id=0;
  87.    const signed char *ptr=cdbk;
  88.    for (i=0;i<nbVec;i++)
  89.    {
  90.       dist=0;
  91.       for (j=0;j<nbDim;j++)
  92.       {
  93.          tmp=SUB16(x[j],SHL16((spx_word16_t)*ptr++,5));
  94.          dist=MAC16_16(dist,tmp,tmp);
  95.       }
  96.       if (dist<best_dist || i==0)
  97.       {
  98.          best_dist=dist;
  99.          best_id=i;
  100.       }
  101.    }
  102.    for (j=0;j<nbDim;j++)
  103.       x[j] = SUB16(x[j],SHL16((spx_word16_t)cdbk[best_id*nbDim+j],5));
  104.     
  105.    return best_id;
  106. }
  107. /* Note: x is modified*/
  108. static int lsp_weight_quant(spx_word16_t *x, spx_word16_t *weight, const signed char *cdbk, int nbVec, int nbDim)
  109. {
  110.    int i,j;
  111.    spx_word32_t dist;
  112.    spx_word16_t tmp;
  113.    spx_word32_t best_dist=0;
  114.    int best_id=0;
  115.    const signed char *ptr=cdbk;
  116.    for (i=0;i<nbVec;i++)
  117.    {
  118.       dist=0;
  119.       for (j=0;j<nbDim;j++)
  120.       {
  121.          tmp=SUB16(x[j],SHL16((spx_word16_t)*ptr++,5));
  122.          dist=MAC16_32_Q15(dist,weight[j],MULT16_16(tmp,tmp));
  123.       }
  124.       if (dist<best_dist || i==0)
  125.       {
  126.          best_dist=dist;
  127.          best_id=i;
  128.       }
  129.    }
  130.    
  131.    for (j=0;j<nbDim;j++)
  132.       x[j] = SUB16(x[j],SHL16((spx_word16_t)cdbk[best_id*nbDim+j],5));
  133.    return best_id;
  134. }
  135. void lsp_quant_nb(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits)
  136. {
  137.    int i;
  138.    int id;
  139.    spx_word16_t quant_weight[10];
  140.    
  141.    for (i=0;i<order;i++)
  142.       qlsp[i]=lsp[i];
  143.    compute_quant_weights(qlsp, quant_weight, order);
  144.    for (i=0;i<order;i++)
  145.       qlsp[i]=SUB16(qlsp[i],LSP_LINEAR(i));
  146. #ifndef FIXED_POINT
  147.    for (i=0;i<order;i++)
  148.       qlsp[i] = LSP_SCALE*qlsp[i];
  149. #endif
  150.    id = lsp_quant(qlsp, cdbk_nb, NB_CDBK_SIZE, order);
  151.    speex_bits_pack(bits, id, 6);
  152.    for (i=0;i<order;i++)
  153.       qlsp[i]*=2;
  154.  
  155.    id = lsp_weight_quant(qlsp, quant_weight, cdbk_nb_low1, NB_CDBK_SIZE_LOW1, 5);
  156.    speex_bits_pack(bits, id, 6);
  157.    for (i=0;i<5;i++)
  158.       qlsp[i]*=2;
  159.    id = lsp_weight_quant(qlsp, quant_weight, cdbk_nb_low2, NB_CDBK_SIZE_LOW2, 5);
  160.    speex_bits_pack(bits, id, 6);
  161.    id = lsp_weight_quant(qlsp+5, quant_weight+5, cdbk_nb_high1, NB_CDBK_SIZE_HIGH1, 5);
  162.    speex_bits_pack(bits, id, 6);
  163.    for (i=5;i<10;i++)
  164.       qlsp[i]*=2;
  165.    id = lsp_weight_quant(qlsp+5, quant_weight+5, cdbk_nb_high2, NB_CDBK_SIZE_HIGH2, 5);
  166.    speex_bits_pack(bits, id, 6);
  167. #ifdef FIXED_POINT
  168.    for (i=0;i<order;i++)
  169.       qlsp[i]=PSHR16(qlsp[i],2);
  170. #else
  171.    for (i=0;i<order;i++)
  172.       qlsp[i]=qlsp[i] * .00097656;
  173. #endif
  174.    for (i=0;i<order;i++)
  175.       qlsp[i]=lsp[i]-qlsp[i];
  176. }
  177. void lsp_unquant_nb(spx_lsp_t *lsp, int order, SpeexBits *bits)
  178. {
  179.    int i, id;
  180.    for (i=0;i<order;i++)
  181.       lsp[i]=LSP_LINEAR(i);
  182.    id=speex_bits_unpack_unsigned(bits, 6);
  183.    for (i=0;i<10;i++)
  184.       lsp[i] = ADD32(lsp[i], LSP_DIV_256(cdbk_nb[id*10+i]));
  185.    id=speex_bits_unpack_unsigned(bits, 6);
  186.    for (i=0;i<5;i++)
  187.       lsp[i] = ADD16(lsp[i], LSP_DIV_512(cdbk_nb_low1[id*5+i]));
  188.    id=speex_bits_unpack_unsigned(bits, 6);
  189.    for (i=0;i<5;i++)
  190.       lsp[i] = ADD32(lsp[i], LSP_DIV_1024(cdbk_nb_low2[id*5+i]));
  191.    id=speex_bits_unpack_unsigned(bits, 6);
  192.    for (i=0;i<5;i++)
  193.       lsp[i+5] = ADD32(lsp[i+5], LSP_DIV_512(cdbk_nb_high1[id*5+i]));
  194.    
  195.    id=speex_bits_unpack_unsigned(bits, 6);
  196.    for (i=0;i<5;i++)
  197.       lsp[i+5] = ADD32(lsp[i+5], LSP_DIV_1024(cdbk_nb_high2[id*5+i]));
  198. }
  199. void lsp_quant_lbr(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits)
  200. {
  201.    int i;
  202.    int id;
  203.    spx_word16_t quant_weight[10];
  204.    for (i=0;i<order;i++)
  205.       qlsp[i]=lsp[i];
  206.    compute_quant_weights(qlsp, quant_weight, order);
  207.    for (i=0;i<order;i++)
  208.       qlsp[i]=SUB16(qlsp[i],LSP_LINEAR(i));
  209. #ifndef FIXED_POINT
  210.    for (i=0;i<order;i++)
  211.       qlsp[i]=qlsp[i]*LSP_SCALE;
  212. #endif
  213.    id = lsp_quant(qlsp, cdbk_nb, NB_CDBK_SIZE, order);
  214.    speex_bits_pack(bits, id, 6);
  215.    
  216.    for (i=0;i<order;i++)
  217.       qlsp[i]*=2;
  218.    
  219.    id = lsp_weight_quant(qlsp, quant_weight, cdbk_nb_low1, NB_CDBK_SIZE_LOW1, 5);
  220.    speex_bits_pack(bits, id, 6);
  221.    id = lsp_weight_quant(qlsp+5, quant_weight+5, cdbk_nb_high1, NB_CDBK_SIZE_HIGH1, 5);
  222.    speex_bits_pack(bits, id, 6);
  223. #ifdef FIXED_POINT
  224.    for (i=0;i<order;i++)
  225.       qlsp[i] = PSHR16(qlsp[i],1);
  226. #else
  227.    for (i=0;i<order;i++)
  228.       qlsp[i] = qlsp[i]*0.0019531;
  229. #endif
  230.    for (i=0;i<order;i++)
  231.       qlsp[i]=lsp[i]-qlsp[i];
  232. }
  233. void lsp_unquant_lbr(spx_lsp_t *lsp, int order, SpeexBits *bits)
  234. {
  235.    int i, id;
  236.    for (i=0;i<order;i++)
  237.       lsp[i]=LSP_LINEAR(i);
  238.    id=speex_bits_unpack_unsigned(bits, 6);
  239.    for (i=0;i<10;i++)
  240.       lsp[i] += LSP_DIV_256(cdbk_nb[id*10+i]);
  241.    id=speex_bits_unpack_unsigned(bits, 6);
  242.    for (i=0;i<5;i++)
  243.       lsp[i] += LSP_DIV_512(cdbk_nb_low1[id*5+i]);
  244.    id=speex_bits_unpack_unsigned(bits, 6);
  245.    for (i=0;i<5;i++)
  246.       lsp[i+5] += LSP_DIV_512(cdbk_nb_high1[id*5+i]);
  247.    
  248. }
  249. #ifdef DISABLE_WIDEBAND
  250. void lsp_quant_high(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits)
  251. {
  252.    speex_error("Wideband and Ultra-wideband are disabled");
  253. }
  254. void lsp_unquant_high(spx_lsp_t *lsp, int order, SpeexBits *bits)
  255. {
  256.    speex_error("Wideband and Ultra-wideband are disabled");
  257. }
  258. #else
  259. extern const signed char high_lsp_cdbk[];
  260. extern const signed char high_lsp_cdbk2[];
  261. void lsp_quant_high(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits)
  262. {
  263.    int i;
  264.    int id;
  265.    spx_word16_t quant_weight[10];
  266.    for (i=0;i<order;i++)
  267.       qlsp[i]=lsp[i];
  268.    compute_quant_weights(qlsp, quant_weight, order);
  269.    /*   quant_weight[0] = 10/(qlsp[1]-qlsp[0]);
  270.    quant_weight[order-1] = 10/(qlsp[order-1]-qlsp[order-2]);
  271.    for (i=1;i<order-1;i++)
  272.    {
  273.       tmp1 = 10/(qlsp[i]-qlsp[i-1]);
  274.       tmp2 = 10/(qlsp[i+1]-qlsp[i]);
  275.       quant_weight[i] = tmp1 > tmp2 ? tmp1 : tmp2;
  276.       }*/
  277.    for (i=0;i<order;i++)
  278.       qlsp[i]=SUB16(qlsp[i],LSP_LINEAR_HIGH(i));
  279. #ifndef FIXED_POINT
  280.    for (i=0;i<order;i++)
  281.       qlsp[i] = qlsp[i]*LSP_SCALE;
  282. #endif
  283.    id = lsp_quant(qlsp, high_lsp_cdbk, 64, order);
  284.    speex_bits_pack(bits, id, 6);
  285.    for (i=0;i<order;i++)
  286.       qlsp[i]*=2;
  287.    id = lsp_weight_quant(qlsp, quant_weight, high_lsp_cdbk2, 64, order);
  288.    speex_bits_pack(bits, id, 6);
  289. #ifdef FIXED_POINT
  290.    for (i=0;i<order;i++)
  291.       qlsp[i] = PSHR16(qlsp[i],1);
  292. #else
  293.    for (i=0;i<order;i++)
  294.       qlsp[i] = qlsp[i]*0.0019531;
  295. #endif
  296.    for (i=0;i<order;i++)
  297.       qlsp[i]=lsp[i]-qlsp[i];
  298. }
  299. void lsp_unquant_high(spx_lsp_t *lsp, int order, SpeexBits *bits)
  300. {
  301.    int i, id;
  302.    for (i=0;i<order;i++)
  303.       lsp[i]=LSP_LINEAR_HIGH(i);
  304.    id=speex_bits_unpack_unsigned(bits, 6);
  305.    for (i=0;i<order;i++)
  306.       lsp[i] += LSP_DIV_256(high_lsp_cdbk[id*order+i]);
  307.    id=speex_bits_unpack_unsigned(bits, 6);
  308.    for (i=0;i<order;i++)
  309.       lsp[i] += LSP_DIV_512(high_lsp_cdbk2[id*order+i]);
  310. }
  311. #endif
  312. #ifdef EPIC_48K
  313. extern const signed char cdbk_lsp_vlbr[5120];
  314. extern const signed char cdbk_lsp2_vlbr[160];
  315. void lsp_quant_48k(spx_lsp_t *lsp, spx_lsp_t *qlsp, int order, SpeexBits *bits)
  316. {
  317.    int i;
  318.    int id;
  319.    spx_word16_t quant_weight[10];
  320.    for (i=0;i<order;i++)
  321.       qlsp[i]=lsp[i];
  322.    compute_quant_weights(qlsp, quant_weight, order);
  323.    for (i=0;i<order;i++)
  324.       qlsp[i]=SUB16(qlsp[i],LSP_SCALING*(.25*i+.3125));
  325. #ifndef FIXED_POINT
  326.    for (i=0;i<order;i++)
  327.       qlsp[i] = qlsp[i]*LSP_SCALE;
  328. #endif
  329.    
  330.    id = lsp_quant(qlsp, cdbk_lsp_vlbr, 512, order);
  331.    speex_bits_pack(bits, id, 9);
  332.    for (i=0;i<order;i++)
  333.       qlsp[i]*=4;
  334.    
  335.    id = lsp_weight_quant(qlsp, quant_weight, cdbk_lsp2_vlbr, 16, 10);
  336.    speex_bits_pack(bits, id, 4);
  337. #ifdef FIXED_POINT
  338.    for (i=0;i<order;i++)
  339.       qlsp[i]=PSHR(qlsp[i],2);
  340. #else
  341.    for (i=0;i<order;i++)
  342.       qlsp[i]=qlsp[i]*0.00097655;
  343. #endif
  344.    for (i=0;i<order;i++)
  345.       qlsp[i]=lsp[i]-qlsp[i];
  346. }
  347. void lsp_unquant_48k(spx_lsp_t *lsp, int order, SpeexBits *bits)
  348. {
  349.    int i, id;
  350.    for (i=0;i<order;i++)
  351.       lsp[i]=LSP_SCALING*(.25*i+.3125);
  352.    id=speex_bits_unpack_unsigned(bits, 9);
  353.    for (i=0;i<10;i++)
  354.       lsp[i] += LSP_SCALING*0.0039062*cdbk_lsp_vlbr[id*10+i];
  355.    id=speex_bits_unpack_unsigned(bits, 4);
  356.    for (i=0;i<10;i++)
  357.       lsp[i] += LSP_SCALING*0.00097655*cdbk_lsp2_vlbr[id*10+i];
  358.    
  359. }
  360. #endif