forked from l1npengtul/nokhwa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d81b469
commit f30c6d3
Showing
2 changed files
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
use four_cc::FourCC; | ||
|
||
pub const YUV420: FourCC = FourCC(*b"420v"); | ||
pub const MJPEG: FourCC = FourCC(*b"MJPG"); | ||
pub const YUYV: FourCC = FourCC(*b"YUYV"); | ||
pub const RAWRGB: FourCC = FourCC(*b"RGB3"); | ||
pub const YUV420V: FourCC = FourCC(*b"420v"); | ||
pub const MJPEG: FourCC = FourCC(*b"mjpg"); | ||
pub const YUYV: FourCC = FourCC(*b"yuyv"); | ||
pub const RAWRGB: FourCC = FourCC(*b"rgb3"); | ||
pub const NV12: FourCC = FourCC(*b"nv12"); | ||
pub const UYVY: FourCC = FourCC(*b"uyvy"); | ||
// Also known as 2vuy | ||
pub const UYVY_APPLE: FourCC = FourCC(*b"2vuy"); | ||
pub const GRAY: FourCC = FourCC(*b"GRAY"); | ||
pub const GRAY: FourCC = FourCC(*b"gray"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters