diff options
author | trav90 <travawine@palemoon.org> | 2018-10-20 14:49:17 -0500 |
---|---|---|
committer | trav90 <travawine@palemoon.org> | 2018-10-20 14:49:17 -0500 |
commit | e5b30fc95e191a50da4b8735aaf52baa8d384a0e (patch) | |
tree | 9331c72c00171437a79932f5765812fee29b35c9 /dom/media/webm | |
parent | 6ddf66542bfbc90056ca86023da7bdefcec31aa8 (diff) | |
download | UXP-e5b30fc95e191a50da4b8735aaf52baa8d384a0e.tar UXP-e5b30fc95e191a50da4b8735aaf52baa8d384a0e.tar.gz UXP-e5b30fc95e191a50da4b8735aaf52baa8d384a0e.tar.lz UXP-e5b30fc95e191a50da4b8735aaf52baa8d384a0e.tar.xz UXP-e5b30fc95e191a50da4b8735aaf52baa8d384a0e.zip |
Fix canPlayType/isTypeSupported for AV1 content
Diffstat (limited to 'dom/media/webm')
-rw-r--r-- | dom/media/webm/WebMDecoder.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dom/media/webm/WebMDecoder.cpp b/dom/media/webm/WebMDecoder.cpp index 5a32793ac..9575d6e42 100644 --- a/dom/media/webm/WebMDecoder.cpp +++ b/dom/media/webm/WebMDecoder.cpp @@ -70,8 +70,7 @@ WebMDecoder::CanHandleMediaType(const nsACString& aMIMETypeExcludingCodecs, continue; } #ifdef MOZ_AV1 - if (isWebMVideo && MediaPrefs::AV1Enabled() && - AOMDecoder::IsSupportedCodec(codec)) { + if (MediaPrefs::AV1Enabled() && IsAV1CodecString(codec)) { continue; } #endif |