av_format/
lib.rs

1//! Contains utilities for muxing and demuxing into various container formats.
2
3#![deny(missing_docs, clippy::undocumented_unsafe_blocks)]
4
5mod data {
6    pub use av_data::*;
7}
8
9pub use av_data::rational;
10
11/// Buffered data helpers.
12pub mod buffer;
13/// Common data structs reused between muxers and demuxers.
14pub mod common;
15/// Utilities for demuxing containers.
16pub mod demuxer;
17/// Error types.
18pub mod error;
19/// Utilities for muxing containers.
20pub mod muxer;
21/// Data structs representing a video, audio, or subtitle stream.
22pub mod stream;