build ok for libusb libuvc
[rtmpclient.git] / app / src / main / jni / libuvc-0.0.6 / include / libuvc / libuvc_config.h
diff --git a/app/src/main/jni/libuvc-0.0.6/include/libuvc/libuvc_config.h b/app/src/main/jni/libuvc-0.0.6/include/libuvc/libuvc_config.h
new file mode 100644 (file)
index 0000000..66eb2d0
--- /dev/null
@@ -0,0 +1,22 @@
+#ifndef LIBUVC_CONFIG_H
+#define LIBUVC_CONFIG_H
+
+#define LIBUVC_VERSION_MAJOR 0
+#define LIBUVC_VERSION_MINOR 0
+#define LIBUVC_VERSION_PATCH 6
+#define LIBUVC_VERSION_STR "0.0.6"
+#define LIBUVC_VERSION_INT                      \
+  ((0 << 16) |             \
+   (0 << 8) |              \
+   (6))
+
+/** @brief Test whether libuvc is new enough
+ * This macro evaluates true iff the current version is
+ * at least as new as the version specified.
+ */
+#define LIBUVC_VERSION_GTE(major, minor, patch)                         \
+  (LIBUVC_VERSION_INT >= (((major) << 16) | ((minor) << 8) | (patch)))
+
+#define LIBUVC_HAS_JPEG 1
+
+#endif // !def(LIBUVC_CONFIG_H)