mirror of
https://github.com/alfg/mp4-rust.git
synced 2025-01-03 08:58:40 +00:00
fix(moof): size returned by write_box
This commit is contained in:
parent
cd86f1c4be
commit
8ce513414c
1 changed files with 1 additions and 1 deletions
|
@ -102,6 +102,6 @@ impl<W: Write> WriteBox<&mut W> for MoofBox {
|
|||
for traf in self.trafs.iter() {
|
||||
traf.write_box(writer)?;
|
||||
}
|
||||
Ok(0)
|
||||
Ok(size)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue