libbitsub_core/vobsub/mod.rs
1//! VobSub (DVD subtitle) format parsing and rendering.
2//!
3//! This module implements the VobSub subtitle format (.idx + .sub files).
4
5mod deband;
6mod idx_parser;
7mod mks_parser;
8mod rle;
9mod sub_parser;
10mod vobsub_parser;
11
12pub(crate) const MAX_VOBSUB_IMAGE_PIXELS: usize = 16_777_216;
13
14pub use deband::*;
15
16pub use idx_parser::*;
17pub use mks_parser::*;
18pub use rle::*;
19pub use sub_parser::*;
20pub use vobsub_parser::*;