Mercurial > audlegacy
annotate audacious/fft.h @ 2283:35b8c6307b18 trunk
[svn] - avoid cpu raising when get_info_on_demand and get_info_on_load are both FALSE; and prevent the combo from happening at all
author | giacomo |
---|---|
date | Fri, 05 Jan 2007 17:31:19 -0800 |
parents | 86f0443d0de2 |
children |
rev | line source |
---|---|
2231 | 1 /* Audacious - Cross-platform multimedia player |
2 * Copyright (C) 2005-2007 Audacious development team | |
3 * | |
4 * Copyright (C) 1999 Richard Boulton <richard@tartarus.org> | |
0 | 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 | |
2105
f18a5b617c34
[svn] - move to GPLv2-only. Based on my interpretation of the license, we are
nenolod
parents:
1459
diff
changeset
|
8 * the Free Software Foundation; under version 2 of the License. |
0 | 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 | |
1459 | 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
0 | 18 */ |
19 | |
2231 | 20 /* fft.h: header for iterative implementation of a FFT */ |
21 | |
0 | 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_ */ |