Mercurial > audlegacy
comparison src/audacious/fft.h @ 2313:3149d4b1a9a9 trunk
[svn] - objective-make autodepend fixes
- move all sourcecode into src/ and adjust Makefiles accordingly
author | nenolod |
---|---|
date | Fri, 12 Jan 2007 11:43:40 -0800 |
parents | |
children | cfc8431aceb5 |
comparison
equal
deleted
inserted
replaced
2312:e1a5a66fb9cc | 2313:3149d4b1a9a9 |
---|---|
1 /* Audacious - Cross-platform multimedia player | |
2 * Copyright (C) 2005-2007 Audacious development team | |
3 * | |
4 * Copyright (C) 1999 Richard Boulton <richard@tartarus.org> | |
5 * | |
6 * This program is free software; you can redistribute it and/or modify | |
7 * it under the terms of the GNU General Public License as published by | |
8 * the Free Software Foundation; under version 2 of the License. | |
9 * | |
10 * This program is distributed in the hope that it will be useful, | |
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 * GNU General Public License for more details. | |
14 * | |
15 * You should have received a copy of the GNU General Public License | |
16 * along with this program; if not, write to the Free Software | |
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
18 */ | |
19 | |
20 /* fft.h: header for iterative implementation of a FFT */ | |
21 | |
22 #ifndef _FFT_H_ | |
23 #define _FFT_H_ | |
24 | |
25 #define FFT_BUFFER_SIZE_LOG 9 | |
26 | |
27 #define FFT_BUFFER_SIZE (1 << FFT_BUFFER_SIZE_LOG) | |
28 | |
29 /* sound sample - should be an signed 16 bit value */ | |
30 typedef short int sound_sample; | |
31 | |
32 #ifdef __cplusplus | |
33 extern "C" { | |
34 #endif | |
35 | |
36 /* FFT library */ | |
37 typedef struct _struct_fft_state fft_state; | |
38 fft_state *fft_init(void); | |
39 void fft_perform(const sound_sample * input, float *output, | |
40 fft_state * state); | |
41 void fft_close(fft_state * state); | |
42 | |
43 | |
44 | |
45 #ifdef __cplusplus | |
46 } | |
47 #endif | |
48 #endif /* _FFT_H_ */ |