2
0

config.h 467 B

1234567891011121314151617181920
  1. // Microsoft version of 'inline'
  2. #define inline __inline
  3. // Visual Studio support alloca(), but it always align variables to 16-bit
  4. // boundary, while SSE need 128-bit alignment. So we disable alloca() when
  5. // SSE is enabled.
  6. #ifndef _USE_SSE
  7. # define USE_ALLOCA
  8. #endif
  9. /* Default to floating point */
  10. #ifndef FIXED_POINT
  11. # define FLOATING_POINT
  12. # define USE_SMALLFT
  13. #else
  14. # define USE_KISS_FFT
  15. #endif
  16. /* We don't support visibility on Win32 */
  17. #define EXPORT