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

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * fft.h: Headers for iterative implementation of a FFT
  3.  *****************************************************************************
  4.  * $Id: 942fd5d1af270167dc97fc10482cfedb3f1f4af4 $
  5.  *
  6.  * Mainly taken from XMMS's code
  7.  *
  8.  * Authors: Richard Boulton <richard@tartarus.org>
  9.  *
  10.  * This program is free software; you can redistribute it and/or modify
  11.  * it under the terms of the GNU General Public License as published by
  12.  * the Free Software Foundation; either version 2 of the License, or
  13.  * (at your option) any later version.
  14.  *
  15.  * This program is distributed in the hope that it will be useful,
  16.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  18.  * GNU General Public License for more details.
  19.  *
  20.  * You should have received a copy of the GNU General Public License
  21.  * along with this program; if not, write to the Free Software
  22.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
  23.  *****************************************************************************/
  24. #ifndef _FFT_H_
  25. #define _FFT_H_
  26. #define FFT_BUFFER_SIZE_LOG 9
  27. #define FFT_BUFFER_SIZE (1 << FFT_BUFFER_SIZE_LOG)
  28. /* sound sample - should be an signed 16 bit value */
  29. typedef short int sound_sample;
  30. struct _struct_fft_state {
  31.      /* Temporary data stores to perform FFT in. */
  32.      float real[FFT_BUFFER_SIZE];
  33.      float imag[FFT_BUFFER_SIZE];
  34.      /* */
  35.      unsigned int bitReverse[FFT_BUFFER_SIZE];
  36.      /* The next two tables could be made to use less space in memory, since they
  37.       * overlap hugely, but hey. */
  38.      float sintable[FFT_BUFFER_SIZE / 2];
  39.      float costable[FFT_BUFFER_SIZE / 2];
  40. };
  41. /* FFT prototypes */
  42. typedef struct _struct_fft_state fft_state;
  43. fft_state *visual_fft_init (void);
  44. void fft_perform (const sound_sample *input, float *output, fft_state *state);
  45. void fft_close (fft_state *state);
  46. #endif /* _FFT_H_ */