config.h 767 B

12345678910111213141516171819202122232425262728293031323334
  1. /* This is a build of CELT */
  2. #define CELT_BUILD
  3. /* Version extra */
  4. #define CELT_EXTRA_VERSION "-1"
  5. /* Version major */
  6. #define CELT_MAJOR_VERSION 0
  7. /* Version micro */
  8. #define CELT_MICRO_VERSION 0
  9. /* Version minor */
  10. #define CELT_MINOR_VERSION 7
  11. /* Complete version string */
  12. #define CELT_VERSION "0.7.0-1"
  13. /* Compile as fixed-point */
  14. /* #undef FIXED_POINT */
  15. /* Compile as floating-point */
  16. #define FLOATING_POINT
  17. /* Make use of alloca */
  18. /* #undef USE_ALLOCA */
  19. #define USE_ALLOCA 1 /* disable this when using SSE */
  20. /* Define to equivalent of C99 restrict keyword, or to nothing if this is not
  21. supported. Do not define if restrict is supported directly. */
  22. #define restrict /* __restrict */
  23. // Microsoft version of 'inline'
  24. #define inline __inline