Bug 1208349 - Ensure we query PDM whether it supports MP4 before assuming it supports MP4. r=jya

This commit is contained in:
Chris Pearce 2015-09-25 18:38:22 +12:00
Родитель 2e00ba83cd
Коммит af04bc849a
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -275,7 +275,7 @@ CreateTestH264Decoder(layers::LayersBackend aBackend,
PlatformDecoderModule::Init();
nsRefPtr<PlatformDecoderModule> platform = PlatformDecoderModule::Create();
if (!platform) {
if (!platform || !platform->SupportsMimeType(NS_LITERAL_CSTRING("video/mp4"))) {
return nullptr;
}
@ -331,7 +331,7 @@ CreateTestAACDecoder(AudioInfo& aConfig)
PlatformDecoderModule::Init();
nsRefPtr<PlatformDecoderModule> platform = PlatformDecoderModule::Create();
if (!platform) {
if (!platform || !platform->SupportsMimeType(NS_LITERAL_CSTRING("audio/mp4"))) {
return nullptr;
}