summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2018-05-19 22:06:27 +0200
committerPaul B Mahol <onemda@gmail.com>2019-01-08 22:00:51 +0100
commit8a1fc95840cb8770e34659803060c00b5b3e733b (patch)
tree105ceefa1f7e9bcd3faf3fad7e7ee077ff3438c6 /doc
parent10931a0661eea87e3a7142e15b5077e617be55e9 (diff)
avfilter: add anlmdn audio filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r--doc/filters.texi23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi
index 98858c5356..85d8f6c85b 100644
--- a/doc/filters.texi
+++ b/doc/filters.texi
@@ -1750,6 +1750,29 @@ Full filter invocation with asendcmd may look like this:
asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
@end table
+@section anlmdn
+
+Reduce broadband noise in audio samples using Non-Local Means algorithm.
+
+Each sample is adjusted by looking for other samples with similar contexts. This
+context similarity is defined by comparing their surrounding patches of size
+@option{p}. Patches are searched in an area of @option{r} around the sample.
+
+The filter accepts the following options.
+
+@table @option
+@item s
+Set denoising strength. Allowed range is from 1 to 9999. Default value is 1.
+
+@item p
+Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
+Default value is 2 milliseconds.
+
+@item r
+Set research radius duration. Allowed range is from 2 to 300 milliseconds.
+Default value is 6 milliseconds.
+@end table
+
@section anull
Pass the audio source unchanged to the output.