File: smallft.h

package info (click to toggle)
cdparanoia 3.10.2%2Bdebian-5
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 1,216 kB
  • ctags: 616
  • sloc: ansic: 7,538; sh: 5,308; makefile: 61
file content (12 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
/******************************************************************
 * CopyPolicy: GNU Lesser General Public License 2.1 applies
 * Copyright (C) 1998-2008 Monty xiphmont@mit.edu
 *
 * FFT implementation from OggSquish, minus cosine transforms.
 * Only convenience functions exposed
 *
 ******************************************************************/

extern void fft_forward(int n, float *buf, float *trigcache, int *sp);
extern void fft_backward(int n, float *buf, float *trigcache, int *sp);
extern void fft_i(int n, float **trigcache, int **splitcache);