Bug 1760464 - block certain Intel graphic cards to prevent crashes while using Intel MFT for HW VP8 decoding. r=media-playback-reviewers,gfx-reviewers,bryce,aosmond

Differential Revision: https://phabricator.services.mozilla.com/D141810
This commit is contained in:
alwu
2022-03-23 23:29:43 +00:00
parent 0b296da369
commit eb8910fc37
4 changed files with 17 additions and 1 deletions

View File

@@ -433,6 +433,10 @@ const GfxDeviceFamily* GfxDriverInfo::GetDeviceFamily(DeviceFamily id) {
APPEND_DEVICE(0xa011);
APPEND_DEVICE(0xa012);
break;
case DeviceFamily::Bug1760464:
APPEND_DEVICE(0x0a16); // Intel HD Graphics Family on Haswell Ultrabooks
APPEND_DEVICE(0x041e); // Intel HD Graphics 4400
break;
case DeviceFamily::AmdR600:
// AMD R600 generation GPUs
// R600
@@ -950,6 +954,7 @@ const nsAString& GfxDriverInfo::GetDeviceVendor(DeviceFamily id) {
case DeviceFamily::Bug1116812:
case DeviceFamily::Bug1155608:
case DeviceFamily::Bug1207665:
case DeviceFamily::Bug1760464:
vendor = DeviceVendor::Intel;
break;
case DeviceFamily::NvidiaAll: