mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
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:
parent
2e313706f8
commit
6ad01d940b
9 changed files with 74 additions and 9 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue