config.h 442 B

12345678910111213141516171819
  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 USE_SMALLFT
  12. #else
  13. # define USE_KISS_FFT
  14. #endif
  15. /* We don't support visibility on Win32 */
  16. #define EXPORT