diff options
author | Víctor Paesa <victorpaesa@googlemail.com> | 2009-01-13 21:07:27 +0000 |
---|---|---|
committer | Víctor Paesa <victorpaesa@googlemail.com> | 2009-01-13 21:07:27 +0000 |
commit | 593b321969579fa7fa437746ab906a75b97496b6 (patch) | |
tree | 31b86cb0b52d66e8d9d5e0dfe8419fc318068334 | |
parent | 27ab726e1a945c2049a414fb6c4a4db48de1a329 (diff) | |
download | ffmpeg-593b321969579fa7fa437746ab906a75b97496b6.tar.gz |
Document the same functions, in the same order, that eval.c has.
Originally committed as revision 16586 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | doc/ffmpeg-doc.texi | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/ffmpeg-doc.texi b/doc/ffmpeg-doc.texi index 840ed898d8..7473a0d7cf 100644 --- a/doc/ffmpeg-doc.texi +++ b/doc/ffmpeg-doc.texi @@ -838,16 +838,22 @@ The following functions are available: @item sin(x) @item cos(x) @item tan(x) +@item atan(x) +@item asin(x) +@item acos(x) @item exp(x) @item log(x) +@item abs(x) @item squish(x) @item gauss(x) -@item abs(x) +@item mod(x, y) @item max(x, y) @item min(x, y) +@item eq(x, y) +@item gte(x, y) @item gt(x, y) +@item lte(x, y) @item lt(x, y) -@item eq(x, y) @item bits2qp(bits) @item qp2bits(qp) @end table |