summaryrefslogtreecommitdiff
path: root/libavfilter/vf_atadenoise.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2016-08-15 23:04:08 +0200
committerPaul B Mahol <onemda@gmail.com>2016-08-15 23:04:08 +0200
commit3282e31baaa77d161a4451c27ad0d45f78e1da0a (patch)
treecadfbc561a50d189b94e5c1db73eea337b7a9d06 /libavfilter/vf_atadenoise.c
parentfc3eb173f493344bc69feabaca108f7ca1dfccee (diff)
avfilter/vf_atadenoise: set default size value to 9
This is enough, bigger sizes do not produce better output in 99% cases.
Diffstat (limited to 'libavfilter/vf_atadenoise.c')
-rw-r--r--libavfilter/vf_atadenoise.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_atadenoise.c b/libavfilter/vf_atadenoise.c
index 7cec35773b..cdea298a82 100644
--- a/libavfilter/vf_atadenoise.c
+++ b/libavfilter/vf_atadenoise.c
@@ -67,7 +67,7 @@ static const AVOption atadenoise_options[] = {
{ "1b", "set threshold B for 2nd plane", OFFSET(fthrb[1]), AV_OPT_TYPE_FLOAT, {.dbl=0.04}, 0, 5.0, FLAGS },
{ "2a", "set threshold A for 3rd plane", OFFSET(fthra[2]), AV_OPT_TYPE_FLOAT, {.dbl=0.02}, 0, 0.3, FLAGS },
{ "2b", "set threshold B for 3rd plane", OFFSET(fthrb[2]), AV_OPT_TYPE_FLOAT, {.dbl=0.04}, 0, 5.0, FLAGS },
- { "s", "set how many frames to use", OFFSET(size), AV_OPT_TYPE_INT, {.i64=33}, 5, SIZE, FLAGS },
+ { "s", "set how many frames to use", OFFSET(size), AV_OPT_TYPE_INT, {.i64=9}, 5, SIZE, FLAGS },
{ NULL }
};