summaryrefslogtreecommitdiff
path: root/libavfilter/vf_estdif.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2022-06-21 17:13:59 +0200
committerPaul B Mahol <onemda@gmail.com>2022-06-21 18:10:39 +0200
commitaa1babc59a0d6f632621f6f0b4d09b28599aa5ea (patch)
tree2c3d6843cd5f9dfde0a669009d2d3096e1189205 /libavfilter/vf_estdif.c
parent69364a06c65d3437e8158cdffd98c2f6d1b84dd2 (diff)
downloadffmpeg-aa1babc59a0d6f632621f6f0b4d09b28599aa5ea.tar.gz
avfilter/vf_estdif: tweak ecost option
Diffstat (limited to 'libavfilter/vf_estdif.c')
-rw-r--r--libavfilter/vf_estdif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_estdif.c b/libavfilter/vf_estdif.c
index 3506eab9c5..45089a01da 100644
--- a/libavfilter/vf_estdif.c
+++ b/libavfilter/vf_estdif.c
@@ -95,7 +95,7 @@ static const AVOption estdif_options[] = {
CONST("interlaced", "only deinterlace frames marked as interlaced", 1, "deint"),
{ "rslope", "specify the search radius for edge slope tracing", OFFSET(rslope), AV_OPT_TYPE_INT, {.i64=1}, 1, MAX_R, FLAGS, },
{ "redge", "specify the search radius for best edge matching", OFFSET(redge), AV_OPT_TYPE_INT, {.i64=2}, 0, MAX_R, FLAGS, },
- { "ecost", "specify the edge cost for edge matching", OFFSET(ecost), AV_OPT_TYPE_FLOAT,{.dbl=0.03125},0,1,FLAGS, },
+ { "ecost", "specify the edge cost for edge matching", OFFSET(ecost), AV_OPT_TYPE_FLOAT,{.dbl=1},0,9,FLAGS, },
{ "mcost", "specify the middle cost for edge matching", OFFSET(mcost), AV_OPT_TYPE_FLOAT,{.dbl=0.5}, 0, 1, FLAGS, },
{ "dcost", "specify the distance cost for edge matching", OFFSET(dcost), AV_OPT_TYPE_FLOAT,{.dbl=0.5}, 0, 1, FLAGS, },
{ "interp", "specify the type of interpolation", OFFSET(interp), AV_OPT_TYPE_INT, {.i64=1}, 0, 2, FLAGS, "interp" },