Skip to content

Commit 3ba7455

Browse files
committed
Add more ISO spec references to doc comments
1 parent 5ae0f66 commit 3ba7455

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

mp4parse/src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2700,6 +2700,7 @@ fn read_es_descriptor(data: &[u8], esds: &mut ES_Descriptor) -> Result<()> {
27002700
Ok(())
27012701
}
27022702

2703+
/// See ISO 14496-14:2010 § 6.7.2
27032704
fn read_esds<T: Read>(src: &mut BMFFBox<T>) -> Result<ES_Descriptor> {
27042705
let (_, _) = read_fullbox_extra(src)?;
27052706

@@ -3140,6 +3141,7 @@ fn read_audio_sample_entry<T: Read>(src: &mut BMFFBox<T>) -> Result<SampleEntry>
31403141

31413142
/// Parse a stsd box.
31423143
/// See ISO 14496-12:2015 § 8.5.2
3144+
/// See ISO 14496-14:2010 § 6.7.2
31433145
fn read_stsd<T: Read>(src: &mut BMFFBox<T>, track: &mut Track) -> Result<SampleDescriptionBox> {
31443146
let (_, _) = read_fullbox_extra(src)?;
31453147

0 commit comments

Comments
 (0)