Skip to content

Commit f709b61

Browse files
committed
Decode aavd as mp4a
1 parent 59c24d9 commit f709b61

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/mp4box/stsd.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@ impl<R: Read + Seek> ReadBox<&mut R> for StsdBox {
107107
BoxType::Tx3gBox => {
108108
tx3g = Some(Tx3gBox::read_box(reader, s)?);
109109
}
110+
// aavd
111+
BoxType::UnknownBox(0x61617664) => {
112+
mp4a = Some(Mp4aBox::read_box(reader, s)?);
113+
}
110114
_ => {}
111115
}
112116

0 commit comments

Comments
 (0)