diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-11 21:44:09 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-12 10:13:29 +0200 |
commit | 961d6493e8c2846032dfda6f9dba557a98b02de4 (patch) | |
tree | 6b2a6f0b0376c8a64b9548fe25451bd9ff67cad9 /doc/utils.texi | |
parent | 72704cbff4257466662729fc20e3f0ab85aa8c9e (diff) | |
download | ffmpeg-961d6493e8c2846032dfda6f9dba557a98b02de4.tar.gz |
avutil/eval: add sgn()
Diffstat (limited to 'doc/utils.texi')
-rw-r--r-- | doc/utils.texi | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/doc/utils.texi b/doc/utils.texi index d55dd315c3..4e2e713505 100644 --- a/doc/utils.texi +++ b/doc/utils.texi @@ -920,6 +920,9 @@ corresponding input value will be returned. @item round(expr) Round the value of expression @var{expr} to the nearest integer. For example, "round(1.5)" is "2.0". +@item sgn(x) +Compute sign of @var{x}. + @item sin(x) Compute sine of @var{x}. |