home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 13
/
AACD13.ISO
/
AACD
/
Sound
/
LAME
/
src
/
fft.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-07-09
|
258b
|
11 lines
#ifndef FFT_H
#define FFT_H
#include "encoder.h"
void fft_long(lame_global_flags *gfp, FLOAT x_real[BLKSIZE], int, short **);
void fft_short(lame_global_flags *gfp, FLOAT x_real[3][BLKSIZE_s], int, short **);
void init_fft(lame_global_flags *gfp);
#endif