config.h 538 B

12345678910111213141516171819202122
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. #define CELT_BUILD 1
  4. #define restrict
  5. #define inline __inline
  6. #define USE_ALLOCA 1
  7. /* Comment out the next line for floating-point code */
  8. /*#define FIXED_POINT 1 */
  9. #define OPUS_BUILD 1
  10. /* Get rid of the CELT VS compile warnings */
  11. #if 1
  12. #pragma warning(disable : 4996)/* This function or variable may be unsafe. Consider using fopen_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details. */
  13. #endif
  14. #endif CONFIG_H