From: John Stebbins Date: Sun, 19 Feb 2017 15:36:20 +0000 (-0700) Subject: preset: fix application of anamorphic "Off" X-Git-Tag: 1.0.3~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5e3aa1095e5d53fc180a76931d5871345c327952;p=handbrake preset: fix application of anamorphic "Off" (cherry picked from commit 429b5d5941bd8f60bc9fa6d74cc23d526c3ef1fa) --- 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;