@@ -483,7 +483,7 @@ pub struct VPxConfigBox {
483
483
pub codec_init : TryVec < u8 > ,
484
484
}
485
485
486
- /// See AV1-ISOBMFF § 2.3.3 https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax
486
+ /// See [ AV1-ISOBMFF § 2.3.3]( https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax)
487
487
#[ derive( Debug ) ]
488
488
pub struct AV1ConfigBox {
489
489
pub profile : u8 ,
@@ -502,7 +502,6 @@ pub struct AV1ConfigBox {
502
502
}
503
503
504
504
impl AV1ConfigBox {
505
- /// See https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax
506
505
const CONFIG_OBUS_OFFSET : usize = 4 ;
507
506
508
507
pub fn config_obus ( & self ) -> & [ u8 ] {
@@ -3733,7 +3732,7 @@ fn read_vpcc<T: Read>(src: &mut BMFFBox<T>) -> Result<VPxConfigBox> {
3733
3732
} )
3734
3733
}
3735
3734
3736
- /// See AV1-ISOBMFF § 2.3.3 https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax
3735
+ /// See [ AV1-ISOBMFF § 2.3.3]( https://aomediacodec.github.io/av1-isobmff/#av1codecconfigurationbox-syntax)
3737
3736
fn read_av1c < T : Read > ( src : & mut BMFFBox < T > ) -> Result < AV1ConfigBox > {
3738
3737
// We want to store the raw config as well as a structured (parsed) config, so create a copy of
3739
3738
// the raw config so we have it later, and then parse the structured data from that.
@@ -4124,7 +4123,7 @@ fn read_esds<T: Read>(src: &mut BMFFBox<T>) -> Result<ES_Descriptor> {
4124
4123
}
4125
4124
4126
4125
/// Parse `FLACSpecificBox`.
4127
- /// See https://github.com/xiph/flac/blob/master/doc/isoflac.txt § 3.3.2
4126
+ /// See [Encapsulation of FLAC in ISO Base Media File Format]( https://github.com/xiph/flac/blob/master/doc/isoflac.txt) § 3.3.2
4128
4127
fn read_dfla < T : Read > ( src : & mut BMFFBox < T > ) -> Result < FLACSpecificBox > {
4129
4128
let ( version, flags) = read_fullbox_extra ( src) ?;
4130
4129
if version != 0 {
0 commit comments