Bug 1329386 - Fallback to WMF decoding if the OOP decoder fails. r=jya

This commit is contained in:
Matt Woodrow 2017-01-12 15:35:10 +13:00
Родитель 4e6b9e51c7
Коммит fd9309fe71
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -164,7 +164,7 @@ RemoteDecoderModule::CreateVideoDecoder(const CreateDecoderParams& aParams)
if (!MediaPrefs::PDMUseGPUDecoder() ||
!aParams.mKnowsCompositor ||
aParams.mKnowsCompositor->GetTextureFactoryIdentifier().mParentProcessType != GeckoProcessType_GPU) {
return nullptr;
return mWrapped->CreateVideoDecoder(aParams);
}
MediaDataDecoderCallback* callback = aParams.mCallback;