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

Windows CE

开发平台:

C/C++

  1. /* Copyright (C) 2004 Jean-Marc Valin 
  2.    File: cb_search.c (ARM4 version)
  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. #define OVERRIDE_COMPUTE_WEIGHTED_CODEBOOK
  31. static void compute_weighted_codebook(const signed char *shape_cb, const spx_sig_t *r, spx_word16_t *resp, spx_word16_t *resp2, spx_word32_t *E, int shape_cb_size, int subvect_size, char *stack)
  32. {
  33.    int i, j, k;
  34.   //const signed char *shape;
  35.    for (i=0;i<shape_cb_size;i+=4)
  36.    {
  37.       //shape = shape_cb;
  38.       E[0]=0;
  39.       E[1]=0;
  40.       E[2]=0;
  41.       E[3]=0;
  42.       /* Compute codeword response using convolution with impulse response */
  43.       for(j=0;j<subvect_size;j++)
  44.       {
  45. #if 1
  46.           spx_word16_t *res;
  47.           res = resp+j;
  48.           spx_word32_t resj0,resj1,resj2,resj3;
  49.           spx_word32_t dead1, dead2, dead3, dead4, dead5, dead6, dead7, dead8;
  50.           __asm__ __volatile__ (
  51.                 "mov %0, #0 nt"
  52.                 "mov %1, #0 nt"
  53.                 "mov %2, #0 nt"
  54.                 "mov %3, #0 nt"
  55.                 ".weighted%=: nt"
  56.                 "ldrsb %8, [%6] nt"
  57.                 "ldr %10, [%5], #-4 nt"
  58.                 "mov %9, %6 nt"
  59.                 "ldrsb %11, [%9, %7]! nt"
  60.                 "mla %0, %10, %8, %0 nt"
  61.                 "ldrsb %8, [%9, %7]! nt"
  62.                 "mla %1, %10, %11, %1 nt"
  63.                 "ldrsb %11, [%9, %7]! nt"
  64.                 "mla %2, %10, %8, %2 nt"
  65.                 "subs %4, %4, #1 nt"
  66.                 "mla %3, %10, %11, %3 nt"
  67.                 "add %6, %6, #1 nt"
  68.                 "bne .weighted%= nt"
  69.             : "=r" (resj0), "=r" (resj1), "=r" (resj2), "=r" (resj3),
  70.           "=r" (dead1), "=r" (dead2), "=r" (dead3), "=r" (dead4),
  71.           "=r" (dead5), "=r" (dead6), "=r" (dead7), "=r" (dead8)
  72.             : "4" (j+1), "5" (r+j), "6" (shape_cb), "7" (subvect_size)
  73.             : "cc", "memory");
  74. #else
  75.           spx_word16_t *res;
  76.           res = resp+j;
  77.           spx_word32_t resj0=0;
  78.           spx_word32_t resj1=0;
  79.           spx_word32_t resj2=0;
  80.           spx_word32_t resj3=0;
  81.           for (k=0;k<=j;k++)
  82.           {
  83.              const signed char *shape=shape_cb+k;
  84.              resj0 = MAC16_16(resj0,*shape,r[j-k]);
  85.              shape += subvect_size;
  86.              resj1 = MAC16_16(resj1,*shape,r[j-k]);
  87.              shape += subvect_size;
  88.              resj2 = MAC16_16(resj2,*shape,r[j-k]);
  89.              shape += subvect_size;
  90.              resj3 = MAC16_16(resj3,*shape,r[j-k]);
  91.              shape += subvect_size;
  92.           }
  93. #endif
  94. #ifdef FIXED_POINT
  95.           resj0 = SHR(resj0, 11);
  96.           resj1 = SHR(resj1, 11);
  97.           resj2 = SHR(resj2, 11);
  98.           resj3 = SHR(resj3, 11);
  99. #else
  100.           resj0 *= 0.03125;
  101.           resj1 *= 0.03125;
  102.           resj2 *= 0.03125;
  103.           resj3 *= 0.03125;
  104. #endif
  105.           /* Compute codeword energy */
  106.           E[0]=ADD32(E[0],MULT16_16(resj0,resj0));
  107.           E[1]=ADD32(E[1],MULT16_16(resj1,resj1));
  108.           E[2]=ADD32(E[2],MULT16_16(resj2,resj2));
  109.           E[3]=ADD32(E[3],MULT16_16(resj3,resj3));
  110.           *res = resj0;
  111.           res += subvect_size;
  112.           *res = resj1;
  113.           res += subvect_size;
  114.           *res = resj2;
  115.           res += subvect_size;
  116.           *res = resj3;
  117.           res += subvect_size;
  118.       }
  119.       resp += subvect_size<<2;
  120.       shape_cb += subvect_size<<2;
  121.       E+=4;
  122.    }
  123. }