config.h 696 B

1234567891011121314151617181920212223242526272829303132333435
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. /* comment to disable flac dependency */
  4. #define HAVE_LIBFLAC 1
  5. /* comment to compile with dynamic flac */
  6. #define FLAC__NO_DLL
  7. /* comment to use slower resampler that uses less memory */
  8. #define RESAMPLE_FULL_SINC_TABLE
  9. #define OUTSIDE_SPEEX 1
  10. #define OPUSTOOLS 1
  11. #define inline __inline
  12. #define alloca _alloca
  13. #define USE_ALLOCA 1
  14. #ifdef HAVE_LIBFLAC
  15. #ifdef FLAC__NO_DLL
  16. #pragma comment(lib, "libFLAC_static.lib")
  17. #else
  18. #pragma comment(lib, "libFLAC_dynamic.lib")
  19. #endif
  20. #endif
  21. #define __SSE__
  22. #define RANDOM_PREFIX opustools
  23. #define PACKAGE_NAME "opus-tools"
  24. #include "version.h"
  25. #endif /* CONFIG_H */