Bug 889433 - Blocklist h264 playback on Sony devices running Android 4.2 r=doublec

This commit is contained in:
Edwin Flores 2013-07-23 06:34:09 +12:00
Родитель 798df9c771
Коммит 7842f48a3d
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -485,6 +485,14 @@ GfxInfo::GetFeatureStatusImpl(int32_t aFeature,
return NS_OK;
}
}
else if (CompareVersions(mOSVersion.get(), "4.3.0") < 0)
{
// Blocklist all Sony devices
if (cManufacturer.Find("Sony", true) != -1) {
*aStatus = nsIGfxInfo::FEATURE_BLOCKED_DEVICE;
return NS_OK;
}
}
}
}