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/platforms/agnostic/AgnosticDecoderModule.cpp | |
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/platforms/agnostic/AgnosticDecoderModule.cpp')
-rw-r--r-- | dom/media/platforms/agnostic/AgnosticDecoderModule.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/dom/media/platforms/agnostic/AgnosticDecoderModule.cpp b/dom/media/platforms/agnostic/AgnosticDecoderModule.cpp index 51ca4e9de..cf5ed3d22 100644 --- a/dom/media/platforms/agnostic/AgnosticDecoderModule.cpp +++ b/dom/media/platforms/agnostic/AgnosticDecoderModule.cpp @@ -25,15 +25,15 @@ AgnosticDecoderModule::SupportsMimeType(const nsACString& aMimeType, { bool supports = VPXDecoder::IsVPX(aMimeType) || + OpusDataDecoder::IsOpus(aMimeType) || + VorbisDataDecoder::IsVorbis(aMimeType) || + WaveDataDecoder::IsWave(aMimeType) || + TheoraDecoder::IsTheora(aMimeType); #ifdef MOZ_AV1 if (MediaPrefs::AV1Enabled()) { supports |= AOMDecoder::IsAV1(aMimeType); } #endif - OpusDataDecoder::IsOpus(aMimeType) || - VorbisDataDecoder::IsVorbis(aMimeType) || - WaveDataDecoder::IsWave(aMimeType) || - TheoraDecoder::IsTheora(aMimeType); MOZ_LOG(sPDMLog, LogLevel::Debug, ("Agnostic decoder %s requested type", supports ? "supports" : "rejects")); return supports; |