mirror of
https://github.com/alfg/mp4-rust.git
synced 2025-01-03 08:58:40 +00:00
expose mfhd box
This commit is contained in:
parent
9d00214061
commit
66f177005b
2 changed files with 2 additions and 0 deletions
|
@ -110,6 +110,7 @@ pub(crate) mod vpcc;
|
|||
pub use emsg::EmsgBox;
|
||||
pub use ftyp::FtypBox;
|
||||
pub use mdia::MdiaBox;
|
||||
pub use mfhd::MfhdBox;
|
||||
pub use moof::MoofBox;
|
||||
pub use moov::MoovBox;
|
||||
pub use mvex::MvexBox;
|
||||
|
|
|
@ -7,6 +7,7 @@ use crate::mp4box::{mehd::MehdBox, trex::TrexBox};
|
|||
#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize)]
|
||||
pub struct MvexBox {
|
||||
pub mehd: Option<MehdBox>,
|
||||
// todo: this should be a vec
|
||||
pub trex: TrexBox,
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue