Skip to main content

mlt_core/dump/
mod.rs

1//! Annotated binary dump of an MLT tile, for debugging the wire format.
2//!
3//! [`annotate_tile`] walks a tile buffer into a [`DumpTree`] of [`Region`]s.
4//! [`render()`] formats that tree as an annotated hexdump.
5
6mod model;
7mod render;
8mod walker01;
9
10pub use model::{BitField, BlobInfo, DecodeHint, DumpTree, Region, RegionKind};
11pub use render::{DataMode, RenderOpts, render};
12pub use walker01::annotate_tile;