From 43825bdb2c8a91cdcab65c82d1ca0daaaef0349c Mon Sep 17 00:00:00 2001 From: l1npengtul Date: Tue, 28 Sep 2021 17:26:23 +0900 Subject: [PATCH] 0.4.4 --- Cargo.toml | 2 +- src/utils.rs | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 23f4ce1..0bca1b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nokhwa" -version = "0.4.2" +version = "0.4.3" authors = ["l1npengtul "] edition = "2018" description = "A Simple-to-use, cross-platform Rust Webcam Capture Library" diff --git a/src/utils.rs b/src/utils.rs index 7b63bf9..6c4b2c7 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -926,9 +926,8 @@ impl Ord for CameraControl { } /// The list of known capture backends to the library.
-/// **Note: Only V4L2 and UVC (and by extension AUTO) is implemented so far.** /// - `AUTO` is special - it tells the Camera struct to automatically choose a backend most suited for the current platform. -/// - `AVFoundation` - Uses `AVFoundation` on Mac **Not Implemted** +/// - `AVFoundation` - Uses `AVFoundation` on MacOSX /// - `V4L2` - `Video4Linux2`, a linux specific backend. /// - `UVC` - Universal Video Class (please check [libuvc](https://github.com/libuvc/libuvc)). Platform agnostic, although on linux it needs `sudo` permissions or similar to use. /// - `MediaFoundation` - Microsoft Media Foundation, Windows only,