Add Hardware Accelerated VP9 Support

This is Windows 10+ only for now due to a vp9 decoder mft being needed
Fix for older windows is being worked on.
This commit is contained in:
EAZYBLACK 2026-09-13 10:42:24 +03:00
commit 6ad01d940b
9 changed files with 74 additions and 9 deletions

View file

@ -357,6 +357,15 @@ var dataProviders = {
promises.push(promise);
} catch (e) {}
data.supportsHardwareVP9 = "Unknown";
try {
let promise = winUtils.supportsHardwareVP9Decoding;
promise.then(function(v) {
data.supportsHardwareVP9 = v;
});
promises.push(promise);
} catch (e) {}
data.currentAudioBackend = winUtils.currentAudioBackend;
if (!data.numAcceleratedWindows && gfxInfo) {