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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2002 Jean-Marc Valin
  2.    File: vq.c
  3.    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 "vq.h"
  35. #include "stack_alloc.h"
  36. #include "misc.h"
  37. #ifdef _USE_SSE
  38. #include <xmmintrin.h>
  39. #elif defined(SHORTCUTS) && (defined(ARM4_ASM) || defined(ARM5E_ASM))
  40. #include "vq_arm4.h"
  41. #elif defined(BFIN_ASM)
  42. #include "vq_bfin.h"
  43. #endif
  44. int scal_quant(spx_word16_t in, const spx_word16_t *boundary, int entries)
  45. {
  46.    int i=0;
  47.    while (i<entries-1 && in>boundary[0])
  48.    {
  49.       boundary++;
  50.       i++;
  51.    }
  52.    return i;
  53. }
  54. int scal_quant32(spx_word32_t in, const spx_word32_t *boundary, int entries)
  55. {
  56.    int i=0;
  57.    while (i<entries-1 && in>boundary[0])
  58.    {
  59.       boundary++;
  60.       i++;
  61.    }
  62.    return i;
  63. }
  64. /*Finds the index of the entry in a codebook that best matches the input*/
  65. int vq_index(float *in, const float *codebook, int len, int entries)
  66. {
  67.    int i,j;
  68.    float min_dist=0;
  69.    int best_index=0;
  70.    for (i=0;i<entries;i++)
  71.    {
  72.       float dist=0;
  73.       for (j=0;j<len;j++)
  74.       {
  75.          float tmp = in[j]-*codebook++;
  76.          dist += tmp*tmp;
  77.       }
  78.       if (i==0 || dist<min_dist)
  79.       {
  80.          min_dist=dist;
  81.          best_index=i;
  82.       }
  83.    }
  84.    return best_index;
  85. }
  86. #ifndef OVERRIDE_VQ_NBEST
  87. /*Finds the indices of the n-best entries in a codebook*/
  88. void vq_nbest(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
  89. {
  90.    int i,j,k,used;
  91.    used = 0;
  92.    for (i=0;i<entries;i++)
  93.    {
  94.       spx_word32_t dist=0;
  95.       for (j=0;j<len;j++)
  96.          dist = MAC16_16(dist,in[j],*codebook++);
  97. #ifdef FIXED_POINT
  98.       dist=SUB32(SHR32(E[i],1),dist);
  99. #else
  100.       dist=.5f*E[i]-dist;
  101. #endif
  102.       if (i<N || dist<best_dist[N-1])
  103.       {
  104.          for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
  105.          {
  106.             best_dist[k]=best_dist[k-1];
  107.             nbest[k] = nbest[k-1];
  108.          }
  109.          best_dist[k]=dist;
  110.          nbest[k]=i;
  111.          used++;
  112.       }
  113.    }
  114. }
  115. #endif
  116. #ifndef OVERRIDE_VQ_NBEST_SIGN
  117. /*Finds the indices of the n-best entries in a codebook with sign*/
  118. void vq_nbest_sign(spx_word16_t *in, const spx_word16_t *codebook, int len, int entries, spx_word32_t *E, int N, int *nbest, spx_word32_t *best_dist, char *stack)
  119. {
  120.    int i,j,k, sign, used;
  121.    used=0;
  122.    for (i=0;i<entries;i++)
  123.    {
  124.       spx_word32_t dist=0;
  125.       for (j=0;j<len;j++)
  126.          dist = MAC16_16(dist,in[j],*codebook++);
  127.       if (dist>0)
  128.       {
  129.          sign=0;
  130.          dist=-dist;
  131.       } else
  132.       {
  133.          sign=1;
  134.       }
  135. #ifdef FIXED_POINT
  136.       dist = ADD32(dist,SHR32(E[i],1));
  137. #else
  138.       dist = ADD32(dist,.5f*E[i]);
  139. #endif
  140.       if (i<N || dist<best_dist[N-1])
  141.       {
  142.          for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
  143.          {
  144.             best_dist[k]=best_dist[k-1];
  145.             nbest[k] = nbest[k-1];
  146.          }
  147.          best_dist[k]=dist;
  148.          nbest[k]=i;
  149.          used++;
  150.          if (sign)
  151.             nbest[k]+=entries;
  152.       }
  153.    }
  154. }
  155. #endif