diff options
author | Paul B Mahol <onemda@gmail.com> | 2023-11-04 15:23:59 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2023-11-04 15:39:24 +0100 |
commit | fd1712b6fb8b7acc04ccaa7c02b9a5c9f233cfb3 (patch) | |
tree | cfc94115ddda966c325d878a7774040ec6041a64 /doc/filters.texi | |
parent | 43226efc2188ec2cd16d3b9c4e189bcde1a2a0e5 (diff) | |
download | ffmpeg-fd1712b6fb8b7acc04ccaa7c02b9a5c9f233cfb3.tar.gz |
avfilter/af_adynamicequalizer: merge direction option with mode option
More user-friendly and self-explanatory what certain mode does.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 28458893e8..12113d7802 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1054,12 +1054,16 @@ Set the mode of filter operation, can be one of the following: @table @samp @item listen Output only isolated detection signal. -@item cut +@item cutbelow +Cut frequencies below detection threshold. +@item cutabove Cut frequencies above detection threshold. -@item boost -Boost frequencies bellow detection threshold. +@item boostbelow +Boost frequencies below detection threshold. +@item boostabove +Boost frequencies above detection threshold. @end table -Default mode is @samp{cut}. +Default mode is @samp{cutbelow}. @item dftype Set the type of detection filter, can be one of the following: @@ -1082,16 +1086,6 @@ Set the type of target filter, can be one of the following: @end table Default type is @samp{bell}. -@item direction -Set processing direction relative to threshold. -@table @samp -@item downward -Boost/Cut if threshold is higher/lower than detected volume. -@item upward -Boost/Cut if threshold is lower/higher than detected volume. -@end table -Default direction is @samp{downward}. - @item auto Automatically gather threshold from detection filter. By default is @samp{disabled}. |