[96fb8ad] | 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 | |
---|
[2afdb0f] | 20 | /** \file |
---|
| 21 | |
---|
| 22 | Fast Fourier Transform object |
---|
| 23 | |
---|
| 24 | */ |
---|
[96fb8ad] | 25 | |
---|
| 26 | #ifndef FFT_H_ |
---|
| 27 | #define FFT_H_ |
---|
[66834b6] | 28 | |
---|
[2afdb0f] | 29 | /* note that <complex.h> is not included here but only in aubio_priv.h, so that |
---|
| 30 | * c++ projects can still use their own complex definition. */ |
---|
[96fb8ad] | 31 | #include <fftw3.h> |
---|
| 32 | |
---|
| 33 | #if FFTW3F_SUPPORT |
---|
| 34 | #define FFTW_TYPE fftwf_complex |
---|
| 35 | #else |
---|
| 36 | #define FFTW_TYPE fftw_complex |
---|
| 37 | #endif |
---|
| 38 | |
---|
| 39 | #ifdef __cplusplus |
---|
| 40 | extern "C" { |
---|
| 41 | #endif |
---|
| 42 | |
---|
| 43 | typedef FFTW_TYPE fft_data_t; |
---|
| 44 | |
---|
[2afdb0f] | 45 | /** FFT object |
---|
| 46 | |
---|
| 47 | This object computes forward and backward FFTs, using the complex type to |
---|
| 48 | store the results. The phase vocoder or aubio_mfft_t objects should be |
---|
| 49 | preferred to using directly aubio_fft_t. The FFT are computed using FFTW3 |
---|
| 50 | (although support for another library could be added). |
---|
| 51 | |
---|
| 52 | */ |
---|
[96fb8ad] | 53 | typedef struct _aubio_fft_t aubio_fft_t; |
---|
| 54 | |
---|
[2afdb0f] | 55 | /** create new FFT computation object |
---|
| 56 | |
---|
| 57 | \param size length of the FFT |
---|
| 58 | |
---|
| 59 | */ |
---|
[96fb8ad] | 60 | extern aubio_fft_t * new_aubio_fft(uint_t size); |
---|
[2afdb0f] | 61 | /** delete FFT object |
---|
| 62 | |
---|
| 63 | \param s fft object as returned by new_aubio_fft |
---|
| 64 | |
---|
| 65 | */ |
---|
[96fb8ad] | 66 | extern void del_aubio_fft(aubio_fft_t * s); |
---|
[2afdb0f] | 67 | /** compute forward FFT |
---|
| 68 | |
---|
| 69 | \param s fft object as returned by new_aubio_fft |
---|
| 70 | \param data input signal |
---|
| 71 | \param spectrum output spectrum |
---|
| 72 | \param size length of the input vector |
---|
| 73 | |
---|
| 74 | */ |
---|
[96fb8ad] | 75 | extern void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data, |
---|
| 76 | fft_data_t * spectrum, const uint_t size); |
---|
[2afdb0f] | 77 | /** compute backward (inverse) FFT |
---|
| 78 | |
---|
| 79 | \param s fft object as returned by new_aubio_fft |
---|
| 80 | \param spectrum input spectrum |
---|
| 81 | \param data output signal |
---|
| 82 | \param size length of the input vector |
---|
| 83 | |
---|
| 84 | */ |
---|
[96fb8ad] | 85 | extern void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum, |
---|
| 86 | smpl_t * data, const uint_t size); |
---|
[2afdb0f] | 87 | /** compute norm vector from input spectrum |
---|
| 88 | |
---|
| 89 | \param norm magnitude vector output |
---|
| 90 | \param spectrum spectral data input |
---|
| 91 | \param size size of the vectors |
---|
| 92 | |
---|
| 93 | */ |
---|
[96fb8ad] | 94 | void aubio_fft_getnorm(smpl_t * norm, fft_data_t * spectrum, uint_t size); |
---|
[2afdb0f] | 95 | /** compute phase vector from input spectrum |
---|
| 96 | |
---|
| 97 | \param phase phase vector output |
---|
| 98 | \param spectrum spectral data input |
---|
| 99 | \param size size of the vectors |
---|
| 100 | |
---|
| 101 | */ |
---|
[96fb8ad] | 102 | void aubio_fft_getphas(smpl_t * phase, fft_data_t * spectrum, uint_t size); |
---|
| 103 | |
---|
[2afdb0f] | 104 | /** FFT object (using cvec) |
---|
[f88a326] | 105 | |
---|
[2afdb0f] | 106 | This object works similarly as aubio_fft_t, except the spectral data is |
---|
| 107 | stored in a cvec_t as two vectors, magnitude and phase. |
---|
| 108 | |
---|
| 109 | */ |
---|
[f88a326] | 110 | typedef struct _aubio_mfft_t aubio_mfft_t; |
---|
[2afdb0f] | 111 | |
---|
| 112 | /** create new FFT computation object |
---|
| 113 | |
---|
| 114 | \param winsize length of the FFT |
---|
| 115 | \param channels number of channels |
---|
| 116 | |
---|
| 117 | */ |
---|
[f88a326] | 118 | aubio_mfft_t * new_aubio_mfft(uint_t winsize, uint_t channels); |
---|
[2afdb0f] | 119 | /** compute forward FFT |
---|
| 120 | |
---|
| 121 | \param fft fft object as returned by new_aubio_mfft |
---|
| 122 | \param in input signal |
---|
| 123 | \param fftgrain output spectrum |
---|
| 124 | |
---|
| 125 | */ |
---|
[f88a326] | 126 | void aubio_mfft_do (aubio_mfft_t * fft,fvec_t * in,cvec_t * fftgrain); |
---|
[2afdb0f] | 127 | /** compute backward (inverse) FFT |
---|
| 128 | |
---|
| 129 | \param fft fft object as returned by new_aubio_mfft |
---|
| 130 | \param fftgrain input spectrum (cvec) |
---|
| 131 | \param out output signal |
---|
| 132 | |
---|
| 133 | */ |
---|
[f88a326] | 134 | void aubio_mfft_rdo(aubio_mfft_t * fft,cvec_t * fftgrain, fvec_t * out); |
---|
[2afdb0f] | 135 | /** delete FFT object |
---|
| 136 | |
---|
| 137 | \param fft fft object as returned by new_aubio_mfft |
---|
| 138 | |
---|
| 139 | */ |
---|
[f88a326] | 140 | void del_aubio_mfft(aubio_mfft_t * fft); |
---|
| 141 | |
---|
| 142 | |
---|
[96fb8ad] | 143 | #ifdef __cplusplus |
---|
| 144 | } |
---|
| 145 | #endif |
---|
| 146 | |
---|
| 147 | #endif |
---|