summaryrefslogtreecommitdiffstats
path: root/libhb
diff options
context:
space:
mode:
authorJohn Stebbins <[email protected]>2017-02-19 08:36:20 -0700
committerJohn Stebbins <[email protected]>2017-02-19 08:36:20 -0700
commit429b5d5941bd8f60bc9fa6d74cc23d526c3ef1fa (patch)
treea5ab00422a67f0d53194d96382f856d4eff71869 /libhb
parent6fec4838373fd50520a2499ff143c50e5d323f9f (diff)
preset: fix application of anamorphic "Off"
Diffstat (limited to 'libhb')
-rw-r--r--libhb/preset.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libhb/preset.c b/libhb/preset.c
index cef89d0a2..0b7f37734 100644
--- a/libhb/preset.c
+++ b/libhb/preset.c
@@ -1733,7 +1733,7 @@ int hb_preset_apply_title(hb_handle_t *h, int title_index,
if (hb_value_type(ana_mode_value) == HB_VALUE_TYPE_STRING)
{
const char *s = hb_value_get_string(ana_mode_value);
- if (!strcasecmp(s, "none"))
+ if (!strcasecmp(s, "off"))
geo.mode = HB_ANAMORPHIC_NONE;
else if (!strcasecmp(s, "strict"))
geo.mode = HB_ANAMORPHIC_STRICT;