diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-12-28 18:33:14 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-12-29 08:35:23 +0100 |
commit | 8007e8fc67e3a36ad065415356aa057f01cd83b6 (patch) | |
tree | 8ae030b6aa9f6f73c81ca8853d7b021a39183fb2 /doc/filters.texi | |
parent | c343e81ffd3008e6df9440bf66e2850e41574099 (diff) | |
download | ffmpeg-8007e8fc67e3a36ad065415356aa057f01cd83b6.tar.gz |
avfilter/af_afir: fix minp/maxp range and change default value for maxp
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 65ce25bc18..45d90f6165 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1232,12 +1232,12 @@ Set video stream frame rate. This option is used only when @var{response} is ena @item minp Set minimal partition size used for convolution. Default is @var{16}. -Allowed range is from @var{16} to @var{65536}. +Allowed range is from @var{16} to @var{32768}. Lower values decreases latency at cost of higher CPU usage. @item maxp -Set maximal partition size used for convolution. Default is @var{65536}. -Allowed range is from @var{16} to @var{65536}. +Set maximal partition size used for convolution. Default is @var{8192}. +Allowed range is from @var{16} to @var{32768}. Lower values decreases latency at cost of higher CPU usage. @end table |