1 2 3 4 5 6 7 8 9 10 11 12
//! Contains utilities for encoding and decoding video and audio formats.
#![deny(missing_docs, clippy::undocumented_unsafe_blocks)]
/// Data structs shared between encoders and decoders.
pub mod common;
/// Utilities for decoding video and audio formats.
pub mod decoder;
/// Utilities for encoding video and audio formats.
pub mod encoder;
/// Error types.
pub mod error;