diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-06-13 00:41:16 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-06-13 00:41:16 +0200 |
commit | c0e7164ba6fbb6c17c27bde9dae61a52c915bff9 (patch) | |
tree | c56697cec55ec2d9ff9129f52b8763d7f9b3da32 | |
parent | e65d76fb947fb7570717595ee5b5924612c7e89d (diff) | |
download | ffmpeg-c0e7164ba6fbb6c17c27bde9dae61a52c915bff9.tar.gz |
avfilter/vf_vaguedenoiser: fix small typo in option explanation
-rw-r--r-- | libavfilter/vf_vaguedenoiser.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_vaguedenoiser.c b/libavfilter/vf_vaguedenoiser.c index 49b338ff91..b510cdd628 100644 --- a/libavfilter/vf_vaguedenoiser.c +++ b/libavfilter/vf_vaguedenoiser.c @@ -71,7 +71,7 @@ static const AVOption vaguedenoiser_options[] = { { "method", "set filtering method", OFFSET(method), AV_OPT_TYPE_INT, {.i64=2 }, 0, 2, FLAGS, "method" }, { "hard", "hard thresholding", 0, AV_OPT_TYPE_CONST, {.i64=0}, 0, 0, FLAGS, "method" }, { "soft", "soft thresholding", 0, AV_OPT_TYPE_CONST, {.i64=1}, 0, 0, FLAGS, "method" }, - { "garrote", "garotte thresholding", 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "method" }, + { "garrote", "garrote thresholding", 0, AV_OPT_TYPE_CONST, {.i64=2}, 0, 0, FLAGS, "method" }, { "nsteps", "set number of steps", OFFSET(nsteps), AV_OPT_TYPE_INT, {.i64=6 }, 1, 32, FLAGS }, { "percent", "set percent of full denoising", OFFSET(percent),AV_OPT_TYPE_FLOAT, {.dbl=85}, 0,100, FLAGS }, { "planes", "set planes to filter", OFFSET(planes), AV_OPT_TYPE_INT, {.i64=15 }, 0, 15, FLAGS }, |