root/modules/visualization/visual/fft.h
| Revision d26adda5fb9eaf2b9987ca8cbbe2e35702488529, 1.9 kB (checked in by Laurent Aimar <fenrir@videolan.org>, 4 months ago) | |
|---|---|
| |
| Line | |
|---|---|
| 1 | /***************************************************************************** |
| 2 | * fft.h: Headers for iterative implementation of a FFT |
| 3 | ***************************************************************************** |
| 4 | * $Id$ |
| 5 | * |
| 6 | * Mainly taken from XMMS's code |
| 7 | * |
| 8 | * Authors: Richard Boulton <richard@tartarus.org> |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. |
| 23 | *****************************************************************************/ |
| 24 | |
| 25 | #ifndef _FFT_H_ |
| 26 | #define _FFT_H_ |
| 27 | |
| 28 | #define FFT_BUFFER_SIZE_LOG 9 |
| 29 | |
| 30 | #define FFT_BUFFER_SIZE (1 << FFT_BUFFER_SIZE_LOG) |
| 31 | |
| 32 | /* sound sample - should be an signed 16 bit value */ |
| 33 | typedef short int sound_sample; |
| 34 | |
| 35 | struct _struct_fft_state { |
| 36 | /* Temporary data stores to perform FFT in. */ |
| 37 | float real[FFT_BUFFER_SIZE]; |
| 38 | float imag[FFT_BUFFER_SIZE]; |
| 39 | |
| 40 | /* */ |
| 41 | unsigned int bitReverse[FFT_BUFFER_SIZE]; |
| 42 | |
| 43 | /* The next two tables could be made to use less space in memory, since they |
| 44 | * overlap hugely, but hey. */ |
| 45 | float sintable[FFT_BUFFER_SIZE / 2]; |
| 46 | float costable[FFT_BUFFER_SIZE / 2]; |
| 47 | }; |
| 48 | |
| 49 | /* FFT prototypes */ |
| 50 | typedef struct _struct_fft_state fft_state; |
| 51 | fft_state *visual_fft_init (void); |
| 52 | void fft_perform (const sound_sample *input, float *output, fft_state *state); |
| 53 | void fft_close (fft_state *state); |
| 54 | |
| 55 | |
| 56 | #endif /* _FFT_H_ */ |
Note: See TracBrowser for help on using the browser.
