File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -473,6 +473,7 @@ pub struct VPxConfigBox {
473
473
pub codec_init : TryVec < u8 > ,
474
474
}
475
475
476
+ /// See AV1-ISOBMFF § 2.3.3 https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax
476
477
#[ derive( Debug ) ]
477
478
pub struct AV1ConfigBox {
478
479
pub profile : u8 ,
@@ -3046,6 +3047,7 @@ fn read_vpcc<T: Read>(src: &mut BMFFBox<T>) -> Result<VPxConfigBox> {
3046
3047
} )
3047
3048
}
3048
3049
3050
+ /// See AV1-ISOBMFF § 2.3.3 https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax
3049
3051
fn read_av1c < T : Read > ( src : & mut BMFFBox < T > ) -> Result < AV1ConfigBox > {
3050
3052
// We want to store the raw config as well as a structured (parsed) config, so create a copy of
3051
3053
// the raw config so we have it later, and then parse the structured data from that.
@@ -3560,7 +3562,8 @@ fn read_alac<T: Read>(src: &mut BMFFBox<T>) -> Result<ALACSpecificBox> {
3560
3562
Ok ( ALACSpecificBox { version, data } )
3561
3563
}
3562
3564
3563
- /// Parse a hdlr box.
3565
+ /// Parse a Handler Reference Box.
3566
+ /// See ISOBMFF (ISO 14496-12:2015) § 8.4.3
3564
3567
fn read_hdlr < T : Read > ( src : & mut BMFFBox < T > ) -> Result < HandlerBox > {
3565
3568
let ( _, _) = read_fullbox_extra ( src) ?;
3566
3569
You can’t perform that action at this time.
0 commit comments