mirror of
https://github.com/xiph/opus.git
synced 2025-05-29 06:39:15 +00:00

The object code is unchanged (except ectest). Also reenables -Wparentheses, -Wsign-compare, and the MSVC warnings.
21 lines
560 B
C
21 lines
560 B
C
#ifndef CONFIG_H
|
|
#define CONFIG_H
|
|
|
|
#define CELT_BUILD 1
|
|
|
|
#define restrict
|
|
#define inline __inline
|
|
|
|
#define USE_ALLOCA 1
|
|
|
|
/* Comment out the next line for floating-point code */
|
|
/*#define FIXED_POINT 1 */
|
|
|
|
#define OPUS_BUILD 1
|
|
|
|
/* Get rid of the CELT VS compile warnings */
|
|
#if 1
|
|
#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. */
|
|
#endif
|
|
|
|
#endif CONFIG_H
|