Skip to content

Commit c5b6226

Browse files
authored
Merge pull request mozilla#239 from kornelski/alpha
AVIF alpha channel support
2 parents f7c35a3 + 8aa0f2e commit c5b6226

File tree

4 files changed

+364
-104
lines changed

4 files changed

+364
-104
lines changed

mp4parse/src/boxes.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ impl PartialEq<&[u8; 4]> for FourCC {
9797
}
9898
}
9999

100+
#[deny(unreachable_patterns)]
100101
box_database!(
101102
FileTypeBox 0x6674_7970, // "ftyp"
102103
MediaDataBox 0x6d64_6174, // "mdat"
@@ -114,6 +115,13 @@ box_database!(
114115
MediaHeaderBox 0x6d64_6864, // "mdhd"
115116
HandlerBox 0x6864_6c72, // "hdlr"
116117
MediaInformationBox 0x6d69_6e66, // "minf"
118+
ImageReferenceBox 0x6972_6566, // "iref"
119+
ImagePropertiesBox 0x6970_7270, // "iprp"
120+
ItemPropertyContainerBox 0x6970_636F, // "ipco"
121+
ItemPropertyAssociationBox 0x6970_6D61, // "ipma"
122+
ColorInformationBox 0x636F_6C72, // "colr"
123+
PixelInformationBox 0x7069_7869, // "pixi"
124+
AuxiliaryTypeProperty 0x6175_7843, // "auxC"
117125
SampleTableBox 0x7374_626c, // "stbl"
118126
SampleDescriptionBox 0x7374_7364, // "stsd"
119127
TimeToSampleBox 0x7374_7473, // "stts"

0 commit comments

Comments
 (0)