media-core 0.9.1

Define media types and provide basic media utilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod convert;
mod frame;
mod scale;
#[allow(clippy::module_inception)]
mod video;

#[cfg(all(feature = "video", any(target_os = "macos", target_os = "ios")))]
pub(crate) mod pixel_buffer;

pub use frame::*;
pub use video::*;