-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.h.cmake
81 lines (54 loc) · 1.63 KB
/
config.h.cmake
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
#ifndef CONFIG_H
#define CONFIG_H
#define VERSION "${VERSION}"
/* Big endian CPU - SPARC or PowerPC */
#cmakedefine ADM_BIG_ENDIAN
/* Sparc workstations */
#cmakedefine ADM_SPARC
/* AMR_NB */
#cmakedefine AMR_NB
/* X86_64 AMD64 assembly */
#cmakedefine ARCH_64_BITS
/* Enable PowerPC optim */
#cmakedefine ARCH_POWERPC
/* AltiVec for libmpeg2 */
#cmakedefine ARCH_PPC
/* post proc */
#cmakedefine ARCH_X86
/* X86_32 assembly */
#cmakedefine ARCH_X86_32
/* X86_64 AMD64 assembly */
#cmakedefine ARCH_X86_64
/* AltiVec for mpeg2enc */
#cmakedefine HAVE_ALTIVEC
/* Enable AltiVec by default */
#cmakedefine HAVE_ALTIVEC_H
/* Enable AltiVec by default */
#cmakedefine HAVE_BUILTIN_VECTOR
/* Define to 1 if you have the <inttypes.h> header file. */
#cmakedefine HAVE_INTTYPES_H
/* Use malloc.h */
#cmakedefine HAVE_MALLOC_H
/* Define to 1 if you have the <stdint.h> header file. */
#cmakedefine HAVE_STDINT_H
/* Define to 1 if you have the <stdlib.h> header file. */
#cmakedefine HAVE_STDLIB_H
/* Define to 1 if you have the <string.h> header file. */
#cmakedefine HAVE_STRING_H
/* Define to 1 if you have the <sys/stat.h> header file. */
#cmakedefine HAVE_SYS_STAT_H
/* Define to 1 if you have the <sys/types.h> header file. */
#cmakedefine HAVE_SYS_TYPES_H
/* Define to 1 if you have the <unistd.h> header file. */
#cmakedefine HAVE_UNISTD_H
#cmakedefine HAVE_TIME_H
/* Big endian CPU - SPARC or PowerPC */
#cmakedefine WORDS_BIGENDIAN
#cmakedefine ADM_CPU_PPC
#cmakedefine ADM_CPU_X86
#cmakedefine ADM_CPU_X86_64
/* ffmpeg with swscale support */
#cmakedefine HAVE_SWSCALE
/* opengl extensions available */
#cmakedefine HAVE_OPENGL
#endif