X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=app%2Fsrc%2Fmain%2Fjni%2Flibuvc-0.0.6%2FREADME.md;fp=app%2Fsrc%2Fmain%2Fjni%2Flibuvc-0.0.6%2FREADME.md;h=399441ab3d529a9617eb421badae4df6aa891490;hb=577426ccc66649228285c4a0b6ba8752836059c6;hp=0000000000000000000000000000000000000000;hpb=b7202442677d0cf41e6e59870cd6c34e5619b8b9;p=rtmpclient.git diff --git a/app/src/main/jni/libuvc-0.0.6/README.md b/app/src/main/jni/libuvc-0.0.6/README.md new file mode 100644 index 0000000..399441a --- /dev/null +++ b/app/src/main/jni/libuvc-0.0.6/README.md @@ -0,0 +1,26 @@ +`libuvc` is a cross-platform library for USB video devices, built atop `libusb`. +It enables fine-grained control over USB video devices exporting the standard USB Video Class +(UVC) interface, enabling developers to write drivers for previously unsupported devices, +or just access UVC devices in a generic fashion. + +## Getting and Building libuvc + +Prerequisites: You will need `libusb` and [CMake](http://www.cmake.org/) installed. + +To build, you can just run these shell commands: + + git clone https://github.com/ktossell/libuvc + cd libuvc + mkdir build + cd build + cmake .. + make && sudo make install + +and you're set! If you want to change the build configuration, you can edit `CMakeCache.txt` +in the build directory, or use a CMake GUI to make the desired changes. + +## Developing with libuvc + +The documentation for `libuvc` can currently be found at https://int80k.com/libuvc/doc/. + +Happy hacking!