more self-documenting name
This commit is contained in:
parent
5256d28122
commit
8f8edb25f6
|
@ -31,7 +31,7 @@ local encoder
|
||||||
local OSD
|
local OSD
|
||||||
local Timings
|
local Timings
|
||||||
|
|
||||||
local presets = {
|
local allowed_presets = {
|
||||||
ultrafast = true,
|
ultrafast = true,
|
||||||
superfast = true,
|
superfast = true,
|
||||||
veryfast = true,
|
veryfast = true,
|
||||||
|
@ -346,7 +346,7 @@ if not config.audio_bitrate:endswith('k') then
|
||||||
config.audio_bitrate = config.audio_bitrate .. 'k'
|
config.audio_bitrate = config.audio_bitrate .. 'k'
|
||||||
end
|
end
|
||||||
|
|
||||||
if not presets[config.preset] then
|
if not allowed_presets[config.preset] then
|
||||||
config.preset = 'faster'
|
config.preset = 'faster'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue