diff options
author | trav90 <travawine@palemoon.org> | 2018-11-18 13:10:11 -0600 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2018-11-18 13:10:11 -0600 |
commit | 56c26d86748eadb1292b141993a48bf035081346 (patch) | |
tree | 2e1fc907cd62e3a148799c60d905693e02a5544e /dom/media/fmp4 | |
parent | 4d8b7a376f061f49f184c17d820b9057a82c4522 (diff) | |
download | UXP-56c26d86748eadb1292b141993a48bf035081346.tar UXP-56c26d86748eadb1292b141993a48bf035081346.tar.gz UXP-56c26d86748eadb1292b141993a48bf035081346.tar.lz UXP-56c26d86748eadb1292b141993a48bf035081346.tar.xz UXP-56c26d86748eadb1292b141993a48bf035081346.zip |
Add AV1 support to MP4Decoder.
Diffstat (limited to 'dom/media/fmp4')
-rw-r--r-- | dom/media/fmp4/MP4Decoder.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/dom/media/fmp4/MP4Decoder.cpp b/dom/media/fmp4/MP4Decoder.cpp index fdd6f2c7e..25dd53f94 100644 --- a/dom/media/fmp4/MP4Decoder.cpp +++ b/dom/media/fmp4/MP4Decoder.cpp @@ -139,6 +139,14 @@ MP4Decoder::CanHandleMediaType(const MediaContentType& aType, NS_LITERAL_CSTRING("audio/flac"), aType)); continue; } +#ifdef MOZ_AV1 + if (IsAV1CodecString(codec)) { + trackInfos.AppendElement( + CreateTrackInfoWithMIMETypeAndContentTypeExtraParameters( + NS_LITERAL_CSTRING("video/av1"), aType)); + continue; + } +#endif // Note: Only accept H.264 in a video content type, not in an audio // content type. if (IsWhitelistedH264Codec(codec) && isMP4Video) { |