diff options
author | Paul B Mahol <onemda@gmail.com> | 2022-03-09 21:11:47 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2022-03-09 22:08:36 +0100 |
commit | 41cae501b7f2089579bf4bd8f938520a37dede55 (patch) | |
tree | 28798661540de23ae89e20bc5cd78461fa834a9e /doc/filters.texi | |
parent | 248986a0db56f833b5fc3b1b96445b841f85220b (diff) | |
download | ffmpeg-41cae501b7f2089579bf4bd8f938520a37dede55.tar.gz |
avfilter/af_anlmdn: fix possible array overflow and increase options limits
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index a5d5257b24..3c64d13b82 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -2266,7 +2266,7 @@ The filter accepts the following options: @table @option @item strength, s -Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001. +Set denoising strength. Allowed range is from 0.00001 to 10000. Default value is 0.00001. @item patch, p Set patch radius duration. Allowed range is from 1 to 100 milliseconds. @@ -2294,7 +2294,7 @@ Default value is @var{o}. @end table @item smooth, m -Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}. +Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{1000}. @end table @subsection Commands |