Bug 1682280 - Allow VAAPI hardware video decoding to be blocked via the blocklist. r=stransky

Differential Revision: https://phabricator.services.mozilla.com/D99672
This commit is contained in:
Andrew Osmond 2020-12-14 18:20:40 +00:00
Родитель 47a5e9cd5a
Коммит 60a2a60f2d
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -240,7 +240,8 @@ bool nsDMABufDevice::IsDMABufTexturesEnabled() { return false; }
#endif
bool nsDMABufDevice::IsDMABufVAAPIEnabled() {
return gfx::gfxVars::UseEGL() && IsDMABufEnabled() &&
StaticPrefs::media_ffmpeg_vaapi_enabled();
StaticPrefs::media_ffmpeg_vaapi_enabled() &&
gfx::gfxVars::CanUseHardwareVideoDecoding();
}
bool nsDMABufDevice::IsDMABufWebGLEnabled() {
return gfx::gfxVars::UseEGL() && IsDMABufEnabled() &&