1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2024-06-02 13:39:54 +00:00

Add a missing write_box call for mvex.

This commit is contained in:
Luke Curley 2023-05-02 10:42:33 -07:00
parent 94a133b1fd
commit a6f1d280b5

View file

@ -134,6 +134,9 @@ impl<W: Write> WriteBox<&mut W> for MoovBox {
for trak in self.traks.iter() {
trak.write_box(writer)?;
}
if let Some(mvex) = &self.mvex {
mvex.write_box(writer)?;
}
if let Some(meta) = &self.meta {
meta.write_box(writer)?;
}