1
0
Fork 0
mirror of https://github.com/alfg/mp4-rust.git synced 2025-04-15 08:14:15 +00:00
This commit is contained in:
damitha 2025-03-18 23:07:02 +11:00
parent 8e0b548f61
commit 37bc464dec

View file

@ -154,6 +154,8 @@ impl<W: Write> WriteBox<&mut W> for StsdBox {
mp4a.write_box(writer)?;
} else if let Some(ref tx3g) = self.tx3g {
tx3g.write_box(writer)?;
}else if let Some(ref opus) = self.opus {
opus.write_box(writer)?;
}
Ok(size)