//! This crate contains a mp4 parser ported from [shaka-player](https://github.com/shaka-project/shaka-player) project.
//! Also, some optional features are added for parsing subtitles and `PSSH` boxes.
//!
//! # Optional Features
//!
//! The following are a list of [Cargo features](https://doc.rust-lang.org/stable/cargo/reference/features.html#the-features-section) that can be
//! enabled or disabled:
//!
//! - **pssh**: Enables support for parsing `PSSH` boxes.
//! - **text-ttml**: Enables support for extracting ttml subtitles.
//! - **text-vtt**: Enables support for extracting vtt subtitles.
pub use ;
pub use *;
pub use Reader;
/// A `Result` alias where the `Err` case is `vsd_mp4::Error`.
pub type Result<T> = Result;