comparison audacious/fft.h @ 0:cb178e5ad177 trunk

[svn] Import audacious source.
author nenolod
date Mon, 24 Oct 2005 03:06:47 -0700
parents
children f12d7e208b43
comparison
equal deleted inserted replaced
-1:000000000000 0:cb178e5ad177
1 /* fft.h: Header for iterative implementation of a FFT
2 * Copyright (C) 1999 Richard Boulton <richard@tartarus.org>
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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19 #ifndef _FFT_H_
20 #define _FFT_H_
21
22 #define FFT_BUFFER_SIZE_LOG 9
23
24 #define FFT_BUFFER_SIZE (1 << FFT_BUFFER_SIZE_LOG)
25
26 /* sound sample - should be an signed 16 bit value */
27 typedef short int sound_sample;
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 /* FFT library */
34 typedef struct _struct_fft_state fft_state;
35 fft_state *fft_init(void);
36 void fft_perform(const sound_sample * input, float *output,
37 fft_state * state);
38 void fft_close(fft_state * state);
39
40
41
42 #ifdef __cplusplus
43 }
44 #endif
45 #endif /* _FFT_H_ */