kiss_fft.c
上传用户:ozl2332
上传日期:2009-12-28
资源大小:38k
文件大小:11k
源码类别:

语音压缩

开发平台:

C/C++

  1. /*
  2. Copyright (c) 2003-2004, Mark Borgerding
  3. All rights reserved.
  4. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
  5.     * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
  6.     * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
  7.     * Neither the author nor the names of any contributors may be used to endorse or promote products derived from this software without specific prior written permission.
  8. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  9. */
  10. #include "_kiss_fft_guts.h"
  11. /* The guts header contains all the multiplication and addition macros that are defined for
  12.  fixed or floating point complex numbers.  It also delares the kf_ internal functions.
  13.  */
  14. static kiss_fft_cpx *scratchbuf=NULL;
  15. static size_t nscratchbuf=0;
  16. static kiss_fft_cpx *tmpbuf=NULL;
  17. static size_t ntmpbuf=0;
  18. #define CHECKBUF(buf,nbuf,n) 
  19.     do { 
  20.         if ( nbuf < (size_t)(n) ) {
  21.             buf = (kiss_fft_cpx*)realloc(buf,sizeof(kiss_fft_cpx)*(n)); 
  22.             nbuf = (size_t)(n); 
  23.         } 
  24.    }while(0)
  25. static void kf_bfly2(
  26.         kiss_fft_cpx * Fout,
  27.         const size_t fstride,
  28.         const kiss_fft_cfg st,
  29.         int m
  30.         )
  31. {
  32.     kiss_fft_cpx * Fout2;
  33.     kiss_fft_cpx * tw1 = st->twiddles;
  34.     kiss_fft_cpx t;
  35.     Fout2 = Fout + m;
  36.     do{
  37.         C_FIXDIV(*Fout,2); C_FIXDIV(*Fout2,2);
  38.         C_MUL (t,  *Fout2 , *tw1);
  39.         tw1 += fstride;
  40.         C_SUB( *Fout2 ,  *Fout , t );
  41.         C_ADDTO( *Fout ,  t );
  42.         ++Fout2;
  43.         ++Fout;
  44.     }while (--m);
  45. }
  46. static void kf_bfly4(
  47.         kiss_fft_cpx * Fout,
  48.         const size_t fstride,
  49.         const kiss_fft_cfg st,
  50.         const size_t m
  51.         )
  52. {
  53.     kiss_fft_cpx *tw1,*tw2,*tw3;
  54.     kiss_fft_cpx scratch[6];
  55.     size_t k=m;
  56.     const size_t m2=2*m;
  57.     const size_t m3=3*m;
  58.     tw3 = tw2 = tw1 = st->twiddles;
  59.     do {
  60.         C_FIXDIV(*Fout,4); C_FIXDIV(Fout[m],4); C_FIXDIV(Fout[m2],4); C_FIXDIV(Fout[m3],4);
  61.         C_MUL(scratch[0],Fout[m] , *tw1 );
  62.         C_MUL(scratch[1],Fout[m2] , *tw2 );
  63.         C_MUL(scratch[2],Fout[m3] , *tw3 );
  64.         C_SUB( scratch[5] , *Fout, scratch[1] );
  65.         C_ADDTO(*Fout, scratch[1]);
  66.         C_ADD( scratch[3] , scratch[0] , scratch[2] );
  67.         C_SUB( scratch[4] , scratch[0] , scratch[2] );
  68.         C_SUB( Fout[m2], *Fout, scratch[3] );
  69.         tw1 += fstride;
  70.         tw2 += fstride*2;
  71.         tw3 += fstride*3;
  72.         C_ADDTO( *Fout , scratch[3] );
  73.         if(st->inverse) {
  74.             Fout[m].r = scratch[5].r - scratch[4].i;
  75.             Fout[m].i = scratch[5].i + scratch[4].r;
  76.             Fout[m3].r = scratch[5].r + scratch[4].i;
  77.             Fout[m3].i = scratch[5].i - scratch[4].r;
  78.         }else{
  79.             Fout[m].r = scratch[5].r + scratch[4].i;
  80.             Fout[m].i = scratch[5].i - scratch[4].r;
  81.             Fout[m3].r = scratch[5].r - scratch[4].i;
  82.             Fout[m3].i = scratch[5].i + scratch[4].r;
  83.         }
  84.         ++Fout;
  85.     }while(--k);
  86. }
  87. static void kf_bfly3(
  88.          kiss_fft_cpx * Fout,
  89.          const size_t fstride,
  90.          const kiss_fft_cfg st,
  91.          size_t m
  92.          )
  93. {
  94.      size_t k=m;
  95.      const size_t m2 = 2*m;
  96.      kiss_fft_cpx *tw1,*tw2;
  97.      kiss_fft_cpx scratch[5];
  98.      kiss_fft_cpx epi3;
  99.      epi3 = st->twiddles[fstride*m];
  100.      tw1=tw2=st->twiddles;
  101.      do{
  102.          C_FIXDIV(*Fout,3); C_FIXDIV(Fout[m],3); C_FIXDIV(Fout[m2],3);
  103.          C_MUL(scratch[1],Fout[m] , *tw1);
  104.          C_MUL(scratch[2],Fout[m2] , *tw2);
  105.          C_ADD(scratch[3],scratch[1],scratch[2]);
  106.          C_SUB(scratch[0],scratch[1],scratch[2]);
  107.          tw1 += fstride;
  108.          tw2 += fstride*2;
  109.          Fout[m].r = Fout->r - scratch[3].r/2;
  110.          Fout[m].i = Fout->i - scratch[3].i/2;
  111.          C_MULBYSCALAR( scratch[0] , epi3.i );
  112.          C_ADDTO(*Fout,scratch[3]);
  113.          Fout[m2].r = Fout[m].r + scratch[0].i;
  114.          Fout[m2].i = Fout[m].i - scratch[0].r;
  115.          Fout[m].r -= scratch[0].i;
  116.          Fout[m].i += scratch[0].r;
  117.          ++Fout;
  118.      }while(--k);
  119. }
  120. static void kf_bfly5(
  121.         kiss_fft_cpx * Fout,
  122.         const size_t fstride,
  123.         const kiss_fft_cfg st,
  124.         int m
  125.         )
  126. {
  127.     kiss_fft_cpx *Fout0,*Fout1,*Fout2,*Fout3,*Fout4;
  128.     int u;
  129.     kiss_fft_cpx scratch[13];
  130.     kiss_fft_cpx * twiddles = st->twiddles;
  131.     kiss_fft_cpx *tw;
  132.     kiss_fft_cpx ya,yb;
  133.     ya = twiddles[fstride*m];
  134.     yb = twiddles[fstride*2*m];
  135.     Fout0=Fout;
  136.     Fout1=Fout0+m;
  137.     Fout2=Fout0+2*m;
  138.     Fout3=Fout0+3*m;
  139.     Fout4=Fout0+4*m;
  140.     tw=st->twiddles;
  141.     for ( u=0; u<m; ++u ) {
  142.         C_FIXDIV( *Fout0,5); C_FIXDIV( *Fout1,5); C_FIXDIV( *Fout2,5); C_FIXDIV( *Fout3,5); C_FIXDIV( *Fout4,5);
  143.         scratch[0] = *Fout0;
  144.         C_MUL(scratch[1] ,*Fout1, tw[u*fstride]);
  145.         C_MUL(scratch[2] ,*Fout2, tw[2*u*fstride]);
  146.         C_MUL(scratch[3] ,*Fout3, tw[3*u*fstride]);
  147.         C_MUL(scratch[4] ,*Fout4, tw[4*u*fstride]);
  148.         C_ADD( scratch[7],scratch[1],scratch[4]);
  149.         C_SUB( scratch[10],scratch[1],scratch[4]);
  150.         C_ADD( scratch[8],scratch[2],scratch[3]);
  151.         C_SUB( scratch[9],scratch[2],scratch[3]);
  152.         Fout0->r += scratch[7].r + scratch[8].r;
  153.         Fout0->i += scratch[7].i + scratch[8].i;
  154.         scratch[5].r = scratch[0].r + S_MUL(scratch[7].r,ya.r) + S_MUL(scratch[8].r,yb.r);
  155.         scratch[5].i = scratch[0].i + S_MUL(scratch[7].i,ya.r) + S_MUL(scratch[8].i,yb.r);
  156.         scratch[6].r =  S_MUL(scratch[10].i,ya.i) + S_MUL(scratch[9].i,yb.i);
  157.         scratch[6].i = -S_MUL(scratch[10].r,ya.i) - S_MUL(scratch[9].r,yb.i);
  158.         C_SUB(*Fout1,scratch[5],scratch[6]);
  159.         C_ADD(*Fout4,scratch[5],scratch[6]);
  160.         scratch[11].r = scratch[0].r + S_MUL(scratch[7].r,yb.r) + S_MUL(scratch[8].r,ya.r);
  161.         scratch[11].i = scratch[0].i + S_MUL(scratch[7].i,yb.r) + S_MUL(scratch[8].i,ya.r);
  162.         scratch[12].r = - S_MUL(scratch[10].i,yb.i) + S_MUL(scratch[9].i,ya.i);
  163.         scratch[12].i = S_MUL(scratch[10].r,yb.i) - S_MUL(scratch[9].r,ya.i);
  164.         C_ADD(*Fout2,scratch[11],scratch[12]);
  165.         C_SUB(*Fout3,scratch[11],scratch[12]);
  166.         ++Fout0;++Fout1;++Fout2;++Fout3;++Fout4;
  167.     }
  168. }
  169. /* perform the butterfly for one stage of a mixed radix FFT */
  170. static void kf_bfly_generic(
  171.         kiss_fft_cpx * Fout,
  172.         const size_t fstride,
  173.         const kiss_fft_cfg st,
  174.         int m,
  175.         int p
  176.         )
  177. {
  178.     int u,k,q1,q;
  179.     kiss_fft_cpx * twiddles = st->twiddles;
  180.     kiss_fft_cpx t;
  181.     int Norig = st->nfft;
  182.     CHECKBUF(scratchbuf,nscratchbuf,p);
  183.     for ( u=0; u<m; ++u ) {
  184.         k=u;
  185.         for ( q1=0 ; q1<p ; ++q1 ) {
  186.             scratchbuf[q1] = Fout[ k  ];
  187.             C_FIXDIV(scratchbuf[q1],p);
  188.             k += m;
  189.         }
  190.         k=u;
  191.         for ( q1=0 ; q1<p ; ++q1 ) {
  192.             int twidx=0;
  193.             Fout[ k ] = scratchbuf[0];
  194.             for (q=1;q<p;++q ) {
  195.                 twidx += fstride * k;
  196.                 if (twidx>=Norig) twidx-=Norig;
  197.                 C_MUL(t,scratchbuf[q] , twiddles[twidx] );
  198.                 C_ADDTO( Fout[ k ] ,t);
  199.             }
  200.             k += m;
  201.         }
  202.     }
  203. }
  204. static
  205. void kf_work(
  206.         kiss_fft_cpx * Fout,
  207.         const kiss_fft_cpx * f,
  208.         const size_t fstride,
  209.         int in_stride,
  210.         int * factors,
  211.         const kiss_fft_cfg st
  212.         )
  213. {
  214.     kiss_fft_cpx * Fout_beg=Fout;
  215.     const int p=*factors++; /* the radix  */
  216.     const int m=*factors++; /* stage's fft length/p */
  217.     const kiss_fft_cpx * Fout_end = Fout + p*m;
  218.     if (m==1) {
  219.         do{
  220.             *Fout = *f;
  221.             f += fstride*in_stride;
  222.         }while(++Fout != Fout_end );
  223.     }else{
  224.         do{
  225.             kf_work( Fout , f, fstride*p, in_stride, factors,st);
  226.             f += fstride*in_stride;
  227.         }while( (Fout += m) != Fout_end );
  228.     }
  229.     Fout=Fout_beg;
  230.     switch (p) {
  231.         case 2: kf_bfly2(Fout,fstride,st,m); break;
  232.         case 3: kf_bfly3(Fout,fstride,st,m); break; 
  233.         case 4: kf_bfly4(Fout,fstride,st,m); break;
  234.         case 5: kf_bfly5(Fout,fstride,st,m); break; 
  235.         default: kf_bfly_generic(Fout,fstride,st,m,p); break;
  236.     }
  237. }
  238. /*  facbuf is populated by p1,m1,p2,m2, ...
  239.     where 
  240.     p[i] * m[i] = m[i-1]
  241.     m0 = n                  */
  242. static 
  243. void kf_factor(int n,int * facbuf)
  244. {
  245.     int p=4;
  246.     double floor_sqrt;
  247.     floor_sqrt = floor( sqrt((double)n) );
  248.     /*factor out powers of 4, powers of 2, then any remaining primes */
  249.     do {
  250.         while (n % p) {
  251.             switch (p) {
  252.                 case 4: p = 2; break;
  253.                 case 2: p = 3; break;
  254.                 default: p += 2; break;
  255.             }
  256.             if (p > floor_sqrt)
  257.                 p = n;          /* no more factors, skip to end */
  258.         }
  259.         n /= p;
  260.         *facbuf++ = p;
  261.         *facbuf++ = n;
  262.     } while (n > 1);
  263. }
  264. /*
  265.  *
  266.  * User-callable function to allocate all necessary storage space for the fft.
  267.  *
  268.  * The return value is a contiguous block of memory, allocated with malloc.  As such,
  269.  * It can be freed with free(), rather than a kiss_fft-specific function.
  270.  * */
  271. kiss_fft_cfg kiss_fft_alloc(int nfft,int inverse_fft,void * mem,size_t * lenmem )
  272. {
  273.     kiss_fft_cfg st=NULL;
  274.     size_t memneeded = sizeof(struct kiss_fft_state)
  275.         + sizeof(kiss_fft_cpx)*(nfft-1); /* twiddle factors*/
  276.     if ( lenmem==NULL ) {
  277.         st = ( kiss_fft_cfg)malloc( memneeded );
  278.     }else{
  279.         if (*lenmem >= memneeded)
  280.             st = (kiss_fft_cfg)mem;
  281.         *lenmem = memneeded;
  282.     }
  283.     if (st) {
  284.         int i;
  285.         st->nfft=nfft;
  286.         st->inverse = inverse_fft;
  287.         for (i=0;i<nfft;++i) {
  288.             const double pi=3.14159265358979323846264338327;
  289.             double phase = ( -2*pi /nfft ) * i;
  290.             if (st->inverse)
  291.                 phase *= -1;
  292.             kf_cexp(st->twiddles+i, phase );
  293.         }
  294.         kf_factor(nfft,st->factors);
  295.     }
  296.     return st;
  297. }
  298.     
  299. void kiss_fft_stride(kiss_fft_cfg st,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int in_stride)
  300. {
  301.     if (fin == fout) {
  302.         CHECKBUF(tmpbuf,ntmpbuf,st->nfft);
  303.         kf_work(tmpbuf,fin,1,in_stride, st->factors,st);
  304.         memcpy(fout,tmpbuf,sizeof(kiss_fft_cpx)*st->nfft);
  305.     }else{
  306.         kf_work( fout, fin, 1,in_stride, st->factors,st );
  307.     }
  308. }
  309. void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout)
  310. {
  311.     kiss_fft_stride(cfg,fin,fout,1);
  312. }