diff options
author | Paul B Mahol <onemda@gmail.com> | 2018-11-08 22:07:14 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2018-11-08 22:07:14 +0100 |
commit | 36348d77b86a76041d09bbf876af6d267042b8bb (patch) | |
tree | ed1694a820c71261e583a70eb06bfbb3f4d7156e /doc | |
parent | 698e67bef2ee76f317193e27f354c129b241332c (diff) | |
download | ffmpeg-36348d77b86a76041d09bbf876af6d267042b8bb.tar.gz |
avfilter/af_afir: add minp/maxp options to control latency and speed
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index c99a384c29..d16a8b8b1b 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1217,6 +1217,16 @@ Set video stream size. This option is used only when @var{response} is enabled. @item rate Set video stream frame rate. This option is used only when @var{response} is enabled. + +@item minp +Set minimal partition size used for convolution. Default is @var{16}. +Allowed range is from @var{16} to @var{65536}. +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}. +Lower values decreases latency at cost of higher CPU usage. @end table @subsection Examples |