We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ae0f66 commit 3ba7455Copy full SHA for 3ba7455
mp4parse/src/lib.rs
@@ -2700,6 +2700,7 @@ fn read_es_descriptor(data: &[u8], esds: &mut ES_Descriptor) -> Result<()> {
2700
Ok(())
2701
}
2702
2703
+/// See ISO 14496-14:2010 § 6.7.2
2704
fn read_esds<T: Read>(src: &mut BMFFBox<T>) -> Result<ES_Descriptor> {
2705
let (_, _) = read_fullbox_extra(src)?;
2706
@@ -3140,6 +3141,7 @@ fn read_audio_sample_entry<T: Read>(src: &mut BMFFBox<T>) -> Result<SampleEntry>
3140
3141
3142
/// Parse a stsd box.
3143
/// See ISO 14496-12:2015 § 8.5.2
3144
3145
fn read_stsd<T: Read>(src: &mut BMFFBox<T>, track: &mut Track) -> Result<SampleDescriptionBox> {
3146
3147
0 commit comments