source: src/fft.h @ 66834b6

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 66834b6 was 66834b6, checked in by Paul Brossier <piem@altern.org>, 19 years ago

clarified fftw3 includes

  • Property mode set to 100644
File size: 2.0 KB
Line 
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.h> is not included here but only in aubio_priv.h, so that c++
28 * projects can still use their own complex definition. */
29#include <fftw3.h>
30
31#if FFTW3F_SUPPORT
32#define FFTW_TYPE fftwf_complex
33#else
34#define FFTW_TYPE fftw_complex
35#endif
36
37#ifdef __cplusplus
38extern "C" {
39#endif
40
41typedef FFTW_TYPE fft_data_t;
42
43typedef struct _aubio_fft_t aubio_fft_t;
44
45/* fftw funcs */
46extern aubio_fft_t * new_aubio_fft(uint_t size);
47extern void del_aubio_fft(aubio_fft_t * s);
48extern void aubio_fft_do (const aubio_fft_t *s, const smpl_t * data,
49    fft_data_t * spectrum, const uint_t size);
50extern void aubio_fft_rdo(const aubio_fft_t *s, const fft_data_t * spectrum,
51    smpl_t * data, const uint_t size);
52/** get norm from spectrum */
53void aubio_fft_getnorm(smpl_t * norm, fft_data_t * spectrum, uint_t size);
54/** get phase from spectrum */
55void aubio_fft_getphas(smpl_t * phase, fft_data_t * spectrum, uint_t size);
56
57
58typedef struct _aubio_mfft_t aubio_mfft_t;
59aubio_mfft_t * new_aubio_mfft(uint_t winsize, uint_t channels);
60void aubio_mfft_do (aubio_mfft_t * fft,fvec_t * in,cvec_t * fftgrain);
61void aubio_mfft_rdo(aubio_mfft_t * fft,cvec_t * fftgrain, fvec_t * out);
62void del_aubio_mfft(aubio_mfft_t * fft);
63
64
65#ifdef __cplusplus
66}
67#endif
68
69#endif
Note: See TracBrowser for help on using the repository browser.