build ok for libusb libuvc
[rtmpclient.git] / app / src / main / jni / libuvc-0.0.6 / include / libuvc / libuvc_config.h
1 #ifndef LIBUVC_CONFIG_H
2 #define LIBUVC_CONFIG_H
3
4 #define LIBUVC_VERSION_MAJOR 0
5 #define LIBUVC_VERSION_MINOR 0
6 #define LIBUVC_VERSION_PATCH 6
7 #define LIBUVC_VERSION_STR "0.0.6"
8 #define LIBUVC_VERSION_INT                      \
9   ((0 << 16) |             \
10    (0 << 8) |              \
11    (6))
12
13 /** @brief Test whether libuvc is new enough
14  * This macro evaluates true iff the current version is
15  * at least as new as the version specified.
16  */
17 #define LIBUVC_VERSION_GTE(major, minor, patch)                         \
18   (LIBUVC_VERSION_INT >= (((major) << 16) | ((minor) << 8) | (patch)))
19
20 #define LIBUVC_HAS_JPEG 1
21
22 #endif // !def(LIBUVC_CONFIG_H)