config.h 641 B

123456789101112131415161718192021222324252627282930313233
  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. #ifdef HAVE_LIBFLAC
  13. #ifdef FLAC__NO_DLL
  14. #pragma comment(lib, "libFLAC_static.lib")
  15. #else
  16. #pragma comment(lib, "libFLAC_dynamic.lib")
  17. #endif
  18. #endif
  19. #define __SSE__
  20. #define RANDOM_PREFIX opustools
  21. #define PACKAGE_NAME "opus-tools"
  22. #include "version.h"
  23. #endif /* CONFIG_H */