You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
636B

  1. /* libfft.h - include file for fast Fourier transform library
  2. **
  3. ** Copyright (C) 1989 by Jef Poskanzer.
  4. **
  5. ** Permission to use, copy, modify, and distribute this software and its
  6. ** documentation for any purpose and without fee is hereby granted, provided
  7. ** that the above copyright notice appear in all copies and that both that
  8. ** copyright notice and this permission notice appear in supporting
  9. ** documentation. This software is provided "as is" without express or
  10. ** implied warranty.
  11. */
  12. #include <stdbool.h>
  13. void *initfft(int bits);
  14. void destroyfft( void *fft );
  15. void applyfft( void * fft, float *xr, float *xi, bool inv );