From 2fc857d1a2eafcaa3771cc9cbc293a7fcc8076e7 Mon Sep 17 00:00:00 2001 From: John Stebbins Date: Tue, 8 Mar 2016 13:11:02 -0700 Subject: comb-detect: adjust default sensitivity and add "Less Sensitive" preset --- libhb/param.c | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'libhb/param.c') diff --git a/libhb/param.c b/libhb/param.c index e83d919e5..6b3e0b16f 100644 --- a/libhb/param.c +++ b/libhb/param.c @@ -80,17 +80,21 @@ static hb_filter_param_t detelecine_presets[] = static hb_filter_param_t comb_detect_presets[] = { - { 0, "Off", "off", "disable=1" }, - { 1, "Custom", "custom", NULL }, - { 2, "Default", "default", + { 0, "Off", "off", "disable=1" }, + { 1, "Custom", "custom", NULL }, + { 2, "Default", "default", + "mode=3:spatial-metric=2:motion-thresh=1:spatial-thresh=1:" + "filter-mode=2:block-thresh=40:block-width=16:block-height=16" + }, + { 3, "Less Sensitive", "permissive", "mode=3:spatial-metric=2:motion-thresh=3:spatial-thresh=3:" "filter-mode=2:block-thresh=40:block-width=16:block-height=16" - }, - { 3, "Fast", "fast", - "mode=0:spatial-metric=2:motion-thresh=6:spatial-thresh=9:" + }, + { 4, "Fast", "fast", + "mode=0:spatial-metric=2:motion-thresh=2:spatial-thresh=3:" "filter-mode=1:block-thresh=80:block-width=16:block-height=16" - }, - { 0, NULL, NULL, NULL } + }, + { 0, NULL, NULL, NULL } }; static hb_filter_param_t decomb_presets[] = -- cgit v1.2.3