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

语音压缩

开发平台:

C/C++

  1. Speed:
  2.     * experiment with compiler flags
  3.         Special thanks to Oscar Lesta. He suggested some compiler flags 
  4.         for gcc that make a big difference. They shave 10-15% off
  5.         execution time on some systems.  Try some combination of:
  6.                 -march=pentiumpro
  7.                 -ffast-math
  8.                 -fomit-frame-pointer
  9.     * If the input data has no imaginary component, use the kiss_fftr code under tools/.
  10.       Real ffts are roughly twice as fast as complex.
  11. Reducing code size:
  12.     * remove some of the butterflies. There are currently butterflies optimized for radices
  13.         2,3,4,5.  It is worth mentioning that you can still use FFT sizes that contain 
  14.         these factors, they just won't be quite as fast.  You can decide for yourself 
  15.         whether to keep radix 2 or 4.  If you do some work in this area, let me 
  16.         know what you find.
  17.     * For platforms where ROM/code space is more plentiful than RAM,
  18.      consider creating a hardcoded kiss_fft_state. In other words, decide which 
  19.      FFT size(s) you want and make a structure with the correct factors and twiddles.