av_data/lib.rs
1//! Structs and traits to interact with multimedia data.
2
3#![deny(missing_docs, clippy::undocumented_unsafe_blocks)]
4
5/// A module to represent and interact with rational numbers.
6pub mod rational {
7 pub use num_rational::*;
8}
9
10pub mod audiosample;
11pub mod frame;
12pub mod packet;
13pub mod params;
14pub mod pixel;
15pub mod timeinfo;
16pub mod value;