blob: 86210df52bb19e51648cacbd991e4ac83f625133 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
#ifndef CONFIG_H
#define CONFIG_H
#include "config.h"
#include "codeclib.h"
/* general stuff */
#define OPUS_BUILD
/* alloc stuff */
#define NONTHREADSAFE_PSEUDOSTACK
#define OVERRIDE_OPUS_ALLOC
#define OVERRIDE_OPUS_FREE
#define OVERRIDE_OPUS_ALLOC_SCRATCH
#define opus_alloc codec_malloc
#define opus_free codec_free
#define opus_alloc_scratch codec_malloc
/* lrint */
#define HAVE_LRINTF 0
#define HAVE_LRINT 0
/* embedded stuff */
#define FIXED_POINT
#define DISABLE_FLOAT_API
#define EMBEDDED_ARM 1
/* undefinitions */
#ifdef ABS
#undef ABS
#endif
#ifdef MIN
#undef MIN
#endif
#ifdef MAX
#undef MAX
#endif
#endif /* CONFIG_H */
|