diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-12-07 13:12:42 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-12-07 13:13:47 +0100 |
commit | fcae745f46840416f448639ec34024b07d653ccd (patch) | |
tree | ef8d04ca4faa4561c022fef23c8ba5c194ab3fbd | |
parent | 95fd790c14b034e8f6d75a5a20bbc1499d299d97 (diff) | |
download | ffmpeg-fcae745f46840416f448639ec34024b07d653ccd.tar.gz |
doc/filters: fix obvious mistake for minimum accepted value
-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 3a31f72d79..62d6e26a02 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1421,7 +1421,7 @@ Specify frequency shift. Allowed range is -INT_MAX to INT_MAX. Default value is 0.0. @item level -Set output gain applied to final output. Allowed range is from -1.0 to 1.0. +Set output gain applied to final output. Allowed range is from 0.0 to 1.0. Default value is 1.0. @end table @@ -2203,7 +2203,7 @@ Specify phase shift. Allowed range is from -1.0 to 1.0. Default value is 0.0. @item level -Set output gain applied to final output. Allowed range is from -1.0 to 1.0. +Set output gain applied to final output. Allowed range is from 0.0 to 1.0. Default value is 1.0. @end table |