Fix issue 1) not recognizes some usb device, 2) reconnect when ffmpeg encoder error
[rtmpclient.git] / app / src / main / jni / libuvc-0.0.6 / changelog.txt
1 Changes in 0.0.5 (2014-07-19)
2 ----------------
3
4 New features:
5  - Added support for all of the camera terminal and processing unit controls, including the controls
6    that appeared in UVC 1.1 and 1.5.
7  - Added LIBUVC_VERSION_GTE(major, minor, patch) macro.
8
9 Bug fixes:
10  - Switching to explicit kernel driver detachment since auto_detach isn't available in libusb < 1.0.16.
11  - The cmake module now looks for libuvc.dylib instead of libuvc.so on OS X.
12
13
14 Changes in 0.0.4 (2014-06-26)
15 ----------------
16
17 New features:
18  - Support devices with multiple streaming interfaces and multiple concurrent streams.
19    A new uvc_stream* API is added, along with a uvc_stream_handle type to encapsulate the
20    state of a single UVC stream. Multiple streams can run alongside each other, provided
21    your USB connection has enough bandwidth. Streams can be individually stopped and
22    resumed; the old uvc_start/stop_streaming API is still provided as a convenient way
23    to interact with the usual one-stream devices.
24  - Added support for MJPEG streams.
25  - Added functions for checking/setting autofocus mode.
26  - Added an interface to set/get arbitrary controls on units and terminals.
27  - Made the input, output, processing and extension units public.
28  - Implemented uvc_get_device and uvc_get_libusb_handle.
29  - Add a library-owned flag to uvc_frame_t so that users may allocate their own frame buffers.
30
31 Bug fixes:
32  - Send frames as soon as they're received, not when the following frame arrives
33  - Fixed call to NULL when no status callback is provided.
34  - Fixed crash that occurred during shutdown if the USB device was disconnected during streaming.
35
36 Miscellaneous improvements:
37  - Hid the transfer method (isochronous vs bulk) from the user. This was never really
38    selectable; the camera's streaming interface supports either bulk or isochronous
39    transfers, so now libuvc will figure out which one is appropriate. The `isochronous`
40    parameter has been converted to a `flags` parameter, which is currently unused but
41    could be used to convey up to 7 bits of stream mode information in the future.
42  - Improved the method for claiming the camera's interfaces.
43  - Renamed UVC_COLOR_FORMAT_* to UVC_FRAME_FORMAT_*. The old #defines are still available.
44  - Simplified format definition and lookup.
45  - Improved transfer status (error) handling.