Improve message for broken Intel drivers to indicate that users should update their driver

This commit is contained in:
Cameron Gutman 2020-07-12 15:26:38 -07:00
parent ab5025efbf
commit 8d2cbf806d

View File

@ -446,7 +446,7 @@ bool DXVA2Renderer::isDecoderBlacklisted()
// https://www.intel.com/content/www/us/en/support/articles/000005654/graphics-drivers.html
if (LOWORD(id.DriverVersion.LowPart) < 4836) {
SDL_LogInfo(SDL_LOG_CATEGORY_APPLICATION,
"Intel driver version blacklisted for HEVC");
"Detected buggy Intel GPU driver installed. Update your Intel GPU driver to enable HEVC!");
result = (m_VideoFormat & VIDEO_FORMAT_MASK_H265) != 0;
}
else {