fft.c
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:7k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * fft.c: Iterative implementation of a FFT
  3.  *****************************************************************************
  4.  * $Id: 2151e9be79b9600f0c983117ad7bd64eb5ef6e83 $
  5.  *
  6.  * Mainly taken from XMMS's code
  7.  *
  8.  * Authors: Richard Boulton <richard@tartarus.org>
  9.  *          Ralph Loader <suckfish@ihug.co.nz>
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License as published by
  13.  * the Free Software Foundation; either version 2 of the License, or
  14.  * (at your option) any later version.
  15.  *
  16.  * This program is distributed in the hope that it will be useful,
  17.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19.  * GNU General Public License for more details.
  20.  *
  21.  * You should have received a copy of the GNU General Public License
  22.  * along with this program; if not, write to the Free Software
  23.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  24.  *****************************************************************************/
  25. #include <stdlib.h>
  26. #include "fft.h"
  27. #include <math.h>
  28. #ifndef PI
  29.  #ifdef M_PI
  30.   #define PI M_PI
  31.  #else
  32.   #define PI            3.14159265358979323846  /* pi */
  33.  #endif
  34. #endif
  35. /******************************************************************************
  36.  * Local prototypes
  37.  *****************************************************************************/
  38. static void fft_prepare(const sound_sample *input, float * re, float * im,
  39.                         const unsigned int *bitReverse);
  40. static void fft_calculate(float * re, float * im,
  41.                           const float *costable, const float *sintable );
  42. static void fft_output(const float *re, const float *im, float *output);
  43. static int reverseBits(unsigned int initial);
  44. /*****************************************************************************
  45.  * These functions are the ones called externally
  46.  *****************************************************************************/
  47. /*
  48.  * Initialisation routine - sets up tables and space to work in.
  49.  * Returns a pointer to internal state, to be used when performing calls.
  50.  * On error, returns NULL.
  51.  * The pointer should be freed when it is finished with, by fft_close().
  52.  */
  53. fft_state *visual_fft_init(void)
  54. {
  55.     fft_state *p_state;
  56.     unsigned int i;
  57.     p_state = malloc( sizeof(*p_state) );
  58.     if(! p_state )
  59.         return NULL;
  60.     for(i = 0; i < FFT_BUFFER_SIZE; i++)
  61.     {
  62.         p_state->bitReverse[i] = reverseBits(i);
  63.     }
  64.     for(i = 0; i < FFT_BUFFER_SIZE / 2; i++)
  65.     {
  66.         float j = 2 * PI * i / FFT_BUFFER_SIZE;
  67.         p_state->costable[i] = cos(j);
  68.         p_state->sintable[i] = sin(j);
  69.     }
  70.     return p_state;
  71. }
  72. /*
  73.  * Do all the steps of the FFT, taking as input sound data (as described in
  74.  * sound.h) and returning the intensities of each frequency as floats in the
  75.  * range 0 to ((FFT_BUFFER_SIZE / 2) * 32768) ^ 2
  76.  *
  77.  * The input array is assumed to have FFT_BUFFER_SIZE elements,
  78.  * and the output array is assumed to have (FFT_BUFFER_SIZE / 2 + 1) elements.
  79.  * state is a (non-NULL) pointer returned by visual_fft_init.
  80.  */
  81. void fft_perform(const sound_sample *input, float *output, fft_state *state) {
  82.     /* Convert data from sound format to be ready for FFT */
  83.     fft_prepare(input, state->real, state->imag, state->bitReverse );
  84.     /* Do the actual FFT */
  85.     fft_calculate(state->real, state->imag, state->costable, state->sintable);
  86.     /* Convert the FFT output into intensities */
  87.     fft_output(state->real, state->imag, output);
  88. }
  89. /*
  90.  * Free the state.
  91.  */
  92. void fft_close(fft_state *state) {
  93.     free( state );
  94. }
  95. /*****************************************************************************
  96.  * These functions are called from the other ones
  97.  *****************************************************************************/
  98. /*
  99.  * Prepare data to perform an FFT on
  100.  */
  101. static void fft_prepare( const sound_sample *input, float * re, float * im,
  102.                          const unsigned int *bitReverse ) {
  103.     unsigned int i;
  104.     float *p_real = re;
  105.     float *p_imag = im;
  106.     /* Get input, in reverse bit order */
  107.     for(i = 0; i < FFT_BUFFER_SIZE; i++)
  108.     {
  109.         *p_real++ = input[bitReverse[i]];
  110.         *p_imag++ = 0;
  111.     }
  112. }
  113. /*
  114.  * Take result of an FFT and calculate the intensities of each frequency
  115.  * Note: only produces half as many data points as the input had.
  116.  */
  117. static void fft_output(const float * re, const float * im, float *output)
  118. {
  119.     float *p_output = output;
  120.     const float *p_real   = re;
  121.     const float *p_imag   = im;
  122.     float *p_end    = output + FFT_BUFFER_SIZE / 2;
  123.     while(p_output <= p_end)
  124.     {
  125.         *p_output = (*p_real * *p_real) + (*p_imag * *p_imag);
  126.         p_output++; p_real++; p_imag++;
  127.     }
  128.     /* Do divisions to keep the constant and highest frequency terms in scale
  129.      * with the other terms. */
  130.     *output /= 4;
  131.     *p_end /= 4;
  132. }
  133. /*
  134.  * Actually perform the FFT
  135.  */
  136. static void fft_calculate(float * re, float * im, const float *costable, const float *sintable )
  137. {
  138.     unsigned int i, j, k;
  139.     unsigned int exchanges;
  140.     float fact_real, fact_imag;
  141.     float tmp_real, tmp_imag;
  142.     unsigned int factfact;
  143.     /* Set up some variables to reduce calculation in the loops */
  144.     exchanges = 1;
  145.     factfact = FFT_BUFFER_SIZE / 2;
  146.     /* Loop through the divide and conquer steps */
  147.     for(i = FFT_BUFFER_SIZE_LOG; i != 0; i--) {
  148.         /* In this step, we have 2 ^ (i - 1) exchange groups, each with
  149.          * 2 ^ (FFT_BUFFER_SIZE_LOG - i) exchanges
  150.          */
  151.         /* Loop through the exchanges in a group */
  152.         for(j = 0; j != exchanges; j++) {
  153.             /* Work out factor for this exchange
  154.              * factor ^ (exchanges) = -1
  155.              * So, real = cos(j * PI / exchanges),
  156.              *     imag = sin(j * PI / exchanges)
  157.              */
  158.             fact_real = costable[j * factfact];
  159.             fact_imag = sintable[j * factfact];
  160.             /* Loop through all the exchange groups */
  161.             for(k = j; k < FFT_BUFFER_SIZE; k += exchanges << 1) {
  162.                 int k1 = k + exchanges;
  163.                 tmp_real = fact_real * re[k1] - fact_imag * im[k1];
  164.                 tmp_imag = fact_real * im[k1] + fact_imag * re[k1];
  165.                 re[k1] = re[k] - tmp_real;
  166.                 im[k1] = im[k] - tmp_imag;
  167.                 re[k]  += tmp_real;
  168.                 im[k]  += tmp_imag;
  169.             }
  170.         }
  171.         exchanges <<= 1;
  172.         factfact >>= 1;
  173.     }
  174. }
  175. static int reverseBits(unsigned int initial)
  176. {
  177.     unsigned int reversed = 0, loop;
  178.     for(loop = 0; loop < FFT_BUFFER_SIZE_LOG; loop++) {
  179.         reversed <<= 1;
  180.         reversed += (initial & 1);
  181.         initial >>= 1;
  182.     }
  183.     return reversed;
  184. }