diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-02-01 18:52:42 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-02-01 18:52:42 +0100 |
commit | 423856c4ae850d50f389245b97039023adfd1b3e (patch) | |
tree | 556cf3b865611e9894ffb3fcc7fa9092ff1c24ce | |
parent | 986540b65f6eb6d9fed40d7da9e58b9bbcee35ae (diff) | |
download | ffmpeg-423856c4ae850d50f389245b97039023adfd1b3e.tar.gz |
doc/filters: fix syntax and typo for the afade curve option
-rw-r--r-- | doc/filters.texi | 34 |
1 files changed, 23 insertions, 11 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index c6f0d249d1..5718d100b7 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -587,18 +587,30 @@ the output audio will be silence. Default is 0. If set this option is used instead of @var{nb_samples} one. @item curve -Set cuve for fade transition. +Set curve for fade transition. + +It accepts the following values: @table @option -@item @var{tri} (triangular, linear slope (default)) -@item @var{qsin} (quarter of sine wave) -@item @var{hsin} (half of sine wave) -@item @var{esin} (exponential sine wave) -@item @var{log} (logarithmic) -@item @var{par} (inverted parabola) -@item @var{qua} (quadratic) -@item @var{cub} (cubic) -@item @var{squ} (square root) -@item @var{cbr} (cubic root) +@item tri +select triangular, linear slope (default) +@item qsin +select quarter of sine wave +@item hsin +select half of sine wave +@item esin +select exponential sine wave +@item log +select logarithmic +@item par +select inverted parabola +@item qua +select quadratic +@item cub +select cubic +@item squ +select square root +@item cbr +select cubic root @end table @end table |