Backed out 1 changesets (bug 1208349) for m2 and w2/3 test failures

Backed out changeset 188a6e9a86a0 (bug 1208349)
This commit is contained in:
Carsten "Tomcat" Book 2015-09-25 11:54:49 +02:00
Родитель fc48bbaaab
Коммит 1c9015e1a5
1 изменённых файлов: 2 добавлений и 2 удалений

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

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