import 0.1.7.1
[aubio.git] / src / fft.h
1 /*
2          Copyright (C) 2003 Paul Brossier
3
4          This program is free software; you can redistribute it and/or modify
5          it under the terms of the GNU General Public License as published by
6          the Free Software Foundation; either version 2 of the License, or
7          (at your option) any later version.
8
9          This program is distributed in the hope that it will be useful,
10          but WITHOUT ANY WARRANTY; without even the implied warranty of
11          MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12          GNU General Public License for more details.
13
14          You should have received a copy of the GNU General Public License
15          along with this program; if not, write to the Free Software
16          Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17          
18 */
19
20 /** @file 
21  * Fft object (fftw3f)
22  * */
23
24 #ifndef FFT_H_
25 #define FFT_H_
26 /*
27 // complex before fftw3 
28 #include <complex.h>
29 */
30 #include <fftw3.h>
31
32 #if FFTW3F_SUPPORT
33 #define FFTW_TYPE fftwf_complex
34 #else
35 #define FFTW_TYPE fftw_complex
36 #endif
37
38 #ifdef __cplusplus
39 extern "C" {
40 #endif
41
42 typedef FFTW_TYPE fft_data_t;
43
44 typedef struct _aubio_fft_t aubio_fft_t;
45
46 /* fftw funcs */
47 extern aubio_fft_t * new_aubio_fft(uint_t size);
48 extern void del_aubio_fft(aubio_fft_t * s);
49 extern void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data,
50     fft_data_t * spectrum, const uint_t size);
51 extern void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum,
52     smpl_t * data, const uint_t size);
53 /** get norm from spectrum */
54 void aubio_fft_getnorm(smpl_t * norm, fft_data_t * spectrum, uint_t size);
55 /** get phase from spectrum */
56 void aubio_fft_getphas(smpl_t * phase, fft_data_t * spectrum, uint_t size);
57
58 #ifdef __cplusplus
59 }
60 #endif
61
62 #endif