diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-08-10 11:34:04 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-08-10 11:34:04 +0200 |
commit | 80262d8c86e94ff9a4bb3a9e3c2d734e04ccb399 (patch) | |
tree | 6268dee690cdec8a828ba6b7fa892dd1c3fb92f8 /doc/filters.texi | |
parent | 4506f911858b380d967d7f04879aa104f5dd377d (diff) | |
download | ffmpeg-80262d8c86e94ff9a4bb3a9e3c2d734e04ccb399.tar.gz |
avfilter/avf_showwaves: add sqrt and cbrt amplitude scalers
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 8b52a02cc4..9dab959bdb 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -16834,9 +16834,24 @@ Set if channels should be drawn separately or overlap. Default value is 0. Set colors separated by '|' which are going to be used for drawing of each channel. @item scale -Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}. -Default is linear. +Set amplitude scale. + +Available values are: +@table @samp +@item lin +Linear. +@item log +Logarithmic. + +@item sqrt +Square root. + +@item cbrt +Cubic root. +@end table + +Default is linear. @end table @subsection Examples |