home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Sound / LAME / Source / subs.h < prev    next >
C/C++ Source or Header  |  1999-06-02  |  180b  |  13 lines

  1. #ifndef FFT_H
  2. #define FFT_H
  3.  
  4. #include "types.h"
  5.  
  6. void fft(float x_real[BLKSIZE],
  7.          float energy[BLKSIZE],
  8.          float ax[BLKSIZE], bx[BLKSIZE],
  9.          int N);
  10.  
  11.  
  12. #endif
  13.