From 5e3aa1095e5d53fc180a76931d5871345c327952 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Sun, 19 Feb 2017 08:36:20 -0700 Subject: [PATCH] preset: fix application of anamorphic "Off" (cherry picked from commit 429b5d5941bd8f60bc9fa6d74cc23d526c3ef1fa) --- libhb/preset.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0