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

Decode aavd as mp4a

This commit is contained in:
Linus Unnebäck 2023-03-19 12:38:42 +07:00
parent 59c24d9d6b
commit f709b61b4b
No known key found for this signature in database
GPG key ID: CE70CEAE9C0FA66F

View file

@ -107,6 +107,10 @@ impl<R: Read + Seek> ReadBox<&mut R> for StsdBox {
BoxType::Tx3gBox => {
tx3g = Some(Tx3gBox::read_box(reader, s)?);
}
// aavd
BoxType::UnknownBox(0x61617664) => {
mp4a = Some(Mp4aBox::read_box(reader, s)?);
}
_ => {}
}