kfc.h
上传用户:ozl2332
上传日期:2009-12-28
资源大小:38k
文件大小:1k
源码类别:

语音压缩

开发平台:

C/C++

  1. #ifndef KFC_H
  2. #define KFC_H
  3. #include "kiss_fft.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. /*
  8. KFC -- Kiss FFT Cache
  9. Not needing to deal with kiss_fft_alloc and a config 
  10. object may be handy for a lot of programs.
  11. KFC uses the underlying KISS FFT functions, but caches the config object. 
  12. The first time kfc_fft or kfc_ifft for a given FFT size, the cfg 
  13. object is created for it.  All subsequent calls use the cached 
  14. configuration object.
  15. NOTE:
  16. You should probably not use this if your program will be using a lot 
  17. of various sizes of FFTs.  There is a linear search through the
  18. cached objects.  If you are only using one or two FFT sizes, this
  19. will be negligible. Otherwise, you may want to use another method 
  20. of managing the cfg objects.
  21.  
  22.  There is no automated cleanup of the cached objects.  This could lead 
  23. to large memory usage in a program that uses a lot of *DIFFERENT* 
  24. sized FFTs.  If you want to force all cached cfg objects to be freed,
  25. call kfc_cleanup.
  26.  
  27.  */
  28. /*forward complex FFT */
  29. void kfc_fft(int nfft, const kiss_fft_cpx * fin,kiss_fft_cpx * fout);
  30. /*reverse complex FFT */
  31. void kfc_ifft(int nfft, const kiss_fft_cpx * fin,kiss_fft_cpx * fout);
  32. /*free all cached objects*/
  33. void kfc_cleanup(void);
  34. #ifdef __cplusplus
  35. }
  36. #endif
  37. #endif