summaryrefslogtreecommitdiff
path: root/win32/config.h
blob: f41dda32998041c8be66923d91f7fa13355fee9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef CONFIG_H
#define CONFIG_H

#define CELT_BUILD            1

#define restrict
#define inline __inline
#define getpid _getpid

#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

#define OPUS_VERSION "0.9.11 win32"

#endif CONFIG_H