1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

allow hybird vpp tonemapping for QSV on Linux

This commit is contained in:
nyanmisaka 2021-01-29 18:42:01 +08:00
parent d78cd0db51
commit 200741ae49
2 changed files with 19 additions and 8 deletions

View file

@ -160,8 +160,19 @@ import alert from '../../components/alert';
}];
}
let systemInfo;
function getSystemInfo() {
return systemInfo ? Promise.resolve(systemInfo) : ApiClient.getPublicSystemInfo().then(
info => {
systemInfo = info;
return info;
}
);
}
$(document).on('pageinit', '#encodingSettingsPage', function () {
const page = this;
getSystemInfo();
page.querySelector('#selectVideoDecoder').addEventListener('change', function () {
if (this.value == 'vaapi') {
page.querySelector('.fldVaapiDevice').classList.remove('hide');
@ -191,7 +202,7 @@ import alert from '../../components/alert';
page.querySelector('.fldEnhancedNvdec').classList.add('hide');
}
if (this.value == 'vaapi') {
if (systemInfo.OperatingSystem.toLowerCase() === 'linux' && (this.value == 'vaapi' || this.value == 'qsv')) {
page.querySelector('.fldVppTonemapping').classList.remove('hide');
} else {
page.querySelector('.fldVppTonemapping').classList.add('hide');