OSDN Git Service

Return false instead of assertion failure
[android-x86/hardware-intel-common-vaapi.git] / src / config_android.h.in
1 /* src/config.h.  Generated from config.h.in by configure.  */
2 /* src/config.h.in.  Generated from configure.ac by autoheader.  */
3 /* NOTE: THIS VERSION IS FOR ANDROID ONLY and manually adjusted */
4
5 /* Define if building universal (internal helper macro) */
6 /* #undef AC_APPLE_UNIVERSAL_BUILD */
7
8 /* Define to 1 if you have the <dlfcn.h> header file. */
9 #define HAVE_DLFCN_H 1
10
11 /* Define to 1 if you have the <inttypes.h> header file. */
12 #define HAVE_INTTYPES_H 1
13
14 /* Defined to 1 if VA-API exposes JPEG decoding */
15 #define HAVE_JPEG_DECODING 1
16
17 /* Define to 1 if you have the <memory.h> header file. */
18 #define HAVE_MEMORY_H 1
19
20 /* Define to 1 if you have the <stdint.h> header file. */
21 #define HAVE_STDINT_H 1
22
23 /* Define to 1 if you have the <stdlib.h> header file. */
24 #define HAVE_STDLIB_H 1
25
26 /* Define to 1 if you have the <strings.h> header file. */
27 #define HAVE_STRINGS_H 1
28
29 /* Define to 1 if you have the <string.h> header file. */
30 #define HAVE_STRING_H 1
31
32 /* Define to 1 if you have the <sys/stat.h> header file. */
33 #define HAVE_SYS_STAT_H 1
34
35 /* Define to 1 if you have the <sys/types.h> header file. */
36 #define HAVE_SYS_TYPES_H 1
37
38 /* Define to 1 if you have the <unistd.h> header file. */
39 #define HAVE_UNISTD_H 1
40
41 /* Major version of the driver */
42 #define INTEL_DRIVER_MAJOR_VERSION 1
43
44 /* Micro version of the driver */
45 #define INTEL_DRIVER_MICRO_VERSION 16
46
47 /* Minor version of the driver */
48 #define INTEL_DRIVER_MINOR_VERSION 0
49
50 /* Preversion of the driver */
51 #define INTEL_DRIVER_PRE_VERSION 1
52
53 /* Define to the sub-directory in which libtool stores uninstalled libraries.
54    */
55 #define LT_OBJDIR ".libs/"
56
57 /* Define to 1 if your C compiler doesn't accept -c and -o together. */
58 /* #undef NO_MINUS_C_MINUS_O */
59
60 /* Name of package */
61 #define PACKAGE "libva-driver-intel"
62
63 /* Define to the address where bug reports for this package should be sent. */
64 #define PACKAGE_BUGREPORT "haihao.xiang@intel.com"
65
66 /* Define to the full name of this package. */
67 #define PACKAGE_NAME "intel_driver"
68
69 /* Define to the one symbol short name of this package. */
70 #define PACKAGE_TARNAME "libva-driver-intel"
71
72 /* Define to the home page for this package. */
73 #define PACKAGE_URL ""
74
75 #define VER_CAT_NX(A, B, C, D) A ## . ## B ## . ## C ## D
76 #define VER_CAT(A, B, C, D) VER_CAT_NX(A, B, C, D)
77 #define STRINGIZE_NX(A) #A
78 #define STRINGIZE(A) STRINGIZE_NX(A)
79 #if INTEL_DRIVER_PRE_VERSION > 0
80 #define PRE_VER_CAT_NX(A) .pre ## A
81 #define PRE_VER_CAT(A) PRE_VER_CAT_NX(A)
82 #define INTEL_DRIVER_PRE_VER_SUFFIX PRE_VER_CAT(INTEL_DRIVER_PRE_VERSION)
83 #else
84 #define INTEL_DRIVER_PRE_VER_SUFFIX
85 #endif
86
87 /* Define to the version of this package. */
88 #define PACKAGE_VERSION STRINGIZE(VER_CAT(INTEL_DRIVER_MAJOR_VERSION, INTEL_DRIVER_MINOR_VERSION, INTEL_DRIVER_MICRO_VERSION, INTEL_DRIVER_PRE_VER_SUFFIX))
89
90 /* Define to the full name and version of this package. */
91 #define PACKAGE_STRING PACKAGE_NAME " " PACKAGE_VERSION
92
93 /* Define to 1 if you have the ANSI C header files. */
94 #define STDC_HEADERS 1
95
96 #include <va/va_version.h>
97
98 #define VA_CAT_NX(A, B) __vaDriverInit_## A ## _ ## B
99 #define VA_CAT(A, B) VA_CAT_NX(A, B)
100
101 /* Define driver entry-point */
102 #define VA_DRIVER_INIT_FUNC VA_CAT(VA_MAJOR_VERSION, VA_MINOR_VERSION)
103
104 /* Version number of package */
105 #define VERSION PACKAGE_VERSION
106
107 /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
108    significant byte first (like Motorola and SPARC, unlike Intel). */
109 #if defined AC_APPLE_UNIVERSAL_BUILD
110 # if defined __BIG_ENDIAN__
111 #  define WORDS_BIGENDIAN 1
112 # endif
113 #else
114 # ifndef WORDS_BIGENDIAN
115 /* #  undef WORDS_BIGENDIAN */
116 # endif
117 #endif
118
119 /* Number of bits in a file offset, on hosts where this is settable. */
120 /* #undef _FILE_OFFSET_BITS */
121
122 /* Define for large files, on AIX-style hosts. */
123 /* #undef _LARGE_FILES */
124 #ifdef ANDROID
125 #define Drawable unsigned int
126 #endif