Remove comments

This commit is contained in:
Ingo Oppermann 2024-03-27 11:55:45 +01:00
parent 12344c958f
commit dc384ed554
No known key found for this signature in database
GPG Key ID: 2AB32426E9DD229E
2 changed files with 2 additions and 6 deletions

View File

@ -46,10 +46,7 @@ export default function FilterSelect(props) {
} }
} }
filter.graph = graphs.join(',');
// graphs.push('hwdownload')
filter.graph = `${graphs.join(',')}`;
props.onChange(filter, automatic); props.onChange(filter, automatic);
}; };
@ -94,7 +91,7 @@ export default function FilterSelect(props) {
} }
filterSettings.push( filterSettings.push(
<Settings key={c.filter} settings={profile.filter.settings[c.filter].settings} onChange={handleFilterSettingsChange(c.filter)} /> <Settings key={c.filter} settings={profile.filter.settings[c.filter].settings} onChange={handleFilterSettingsChange(c.filter)} />,
); );
} }
} }

View File

@ -32,7 +32,6 @@ function createGraph(settings) {
} else if (settings.mode === 'width') { } else if (settings.mode === 'width') {
mapping.push(`scale=${settings.width}:-1`); mapping.push(`scale=${settings.width}:-1`);
} else if (settings.mode === 'fix') { } else if (settings.mode === 'fix') {
// mapping.push(`scale_cuda=${settings.fix.split('x').join(':')}:format=yuv420p`);
mapping.push(`scale=${settings.fix}`); mapping.push(`scale=${settings.fix}`);
} }