diff options
author | John Stebbins <[email protected]> | 2019-11-16 10:59:43 -0800 |
---|---|---|
committer | John Stebbins <[email protected]> | 2019-12-16 08:21:44 -0800 |
commit | 06e9c6f60169e8fc3f7f4582d30ad9d7139b7b7f (patch) | |
tree | 8237ec769f97ef8b6a8e9a47a13e6a6bf10aff7a /libhb/handbrake | |
parent | 9dc7b2023e76eb1f51a5d40b97a784a5c97c859b (diff) |
preset: fix import of Audio/SubTitle LanguageList "und"
"und" used to mean "match any" language. Now it means "match only
undefined" language. Forgot to translate "und" to new "any" option on
preset import which breaks presets that have a language list with "und"
defined in it.
Note that this *will* break anyones new presets where they explicitly
wanted "undefined", but this is a much smaller population than those
using "any".
(cherry picked from commit 548fef8bb802d0995dcfa6d45373463f8ab51dea)
Diffstat (limited to 'libhb/handbrake')
-rw-r--r-- | libhb/handbrake/preset_builtin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/handbrake/preset_builtin.h b/libhb/handbrake/preset_builtin.h index 0dc1f64cf..a2020d57c 100644 --- a/libhb/handbrake/preset_builtin.h +++ b/libhb/handbrake/preset_builtin.h @@ -8982,7 +8982,7 @@ const char hb_builtin_presets_json[] = " \"x264Option\": \"\", \n" " \"x264UseAdvancedOptions\": false\n" " }, \n" -" \"VersionMajor\": 40, \n" +" \"VersionMajor\": 41, \n" " \"VersionMicro\": 0, \n" " \"VersionMinor\": 0\n" " }\n" |