annotate audacious/fft.h @ 2257:af716dc0cdb9 trunk

[svn] - do not create GtkAccelGroup anymore; use ui_manager_get_accel_group to get accelerator groups from ui_manager
author giacomo
date Thu, 04 Jan 2007 03:58:58 -0800
parents 86f0443d0de2
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2231
86f0443d0de2 [svn] Update some copyrights notices, update po/
kiyoshi
parents: 2105
diff changeset
1 /* Audacious - Cross-platform multimedia player
86f0443d0de2 [svn] Update some copyrights notices, update po/
kiyoshi
parents: 2105
diff changeset
2 * Copyright (C) 2005-2007 Audacious development team
86f0443d0de2 [svn] Update some copyrights notices, update po/
kiyoshi
parents: 2105
diff changeset
3 *
86f0443d0de2 [svn] Update some copyrights notices, update po/
kiyoshi
parents: 2105
diff changeset
4 * Copyright (C) 1999 Richard Boulton <richard@tartarus.org>
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
5 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
6 * This program is free software; you can redistribute it and/or modify
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
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
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
9 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
10 * This program is distributed in the hope that it will be useful,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
13 * GNU General Public License for more details.
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
14 *
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
16 * along with this program; if not, write to the Free Software
1459
705d4c089fce [svn] Fix postal code.
chainsaw
parents: 1458
diff changeset
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
18 */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
19
2231
86f0443d0de2 [svn] Update some copyrights notices, update po/
kiyoshi
parents: 2105
diff changeset
20 /* fft.h: header for iterative implementation of a FFT */
86f0443d0de2 [svn] Update some copyrights notices, update po/
kiyoshi
parents: 2105
diff changeset
21
0
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
22 #ifndef _FFT_H_
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
23 #define _FFT_H_
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
24
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
25 #define FFT_BUFFER_SIZE_LOG 9
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
26
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
27 #define FFT_BUFFER_SIZE (1 << FFT_BUFFER_SIZE_LOG)
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
28
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
29 /* sound sample - should be an signed 16 bit value */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
30 typedef short int sound_sample;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
31
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
32 #ifdef __cplusplus
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
33 extern "C" {
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
34 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
35
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
36 /* FFT library */
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
37 typedef struct _struct_fft_state fft_state;
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
38 fft_state *fft_init(void);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
39 void fft_perform(const sound_sample * input, float *output,
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
40 fft_state * state);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
41 void fft_close(fft_state * state);
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
42
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
43
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
44
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
45 #ifdef __cplusplus
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
46 }
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
47 #endif
cb178e5ad177 [svn] Import audacious source.
nenolod
parents:
diff changeset
48 #endif /* _FFT_H_ */