summaryrefslogtreecommitdiffstats
path: root/lib/rbcodec/codecs/libopus/config.h
blob: f9fdfb0ec87f5eca97f2a6b114982fdca94f0a1f (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#ifndef CONFIG_H
#define CONFIG_H

#include "rbcodecconfig.h"
#include "codeclib.h"
#include "ogg/ogg.h"

/* general stuff */
#define OPUS_BUILD

/* alloc stuff */
#define VAR_ARRAYS
#define NORM_ALIASING_HACK

#define OVERRIDE_OPUS_ALLOC
#define OVERRIDE_OPUS_FREE
#define OVERRIDE_OPUS_ALLOC_SCRATCH

#define opus_alloc          _ogg_malloc
#define opus_free           _ogg_free
#define opus_alloc_scratch  _ogg_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

#if defined(CPU_ARM)
#define OPUS_ARM_ASM
#if ARM_ARCH == 4
#define OPUS_ARM_INLINE_ASM
#elif ARM_ARCH > 4
#define OPUS_ARM_INLINE_EDSP
#endif
#endif

#if defined(CPU_COLDFIRE)
#define OPUS_CF_INLINE_ASM
#endif

#endif /* CONFIG_H */