diff options
author | Clément Bœsch <ubitux@gmail.com> | 2013-03-22 01:47:49 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2013-03-22 09:20:45 +0100 |
commit | 77f60f00111396b740bf44440f883010cc38514a (patch) | |
tree | 819735690f4dbca6d83416f277bc291563d04174 /doc | |
parent | ac9b056ddbefecf3e68e89af45d9c8e5172a5ff8 (diff) | |
download | ffmpeg-77f60f00111396b740bf44440f883010cc38514a.tar.gz |
lavu/eval: add between() function.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/eval.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/eval.texi b/doc/eval.texi index e1a5c0a969..24db3b853b 100644 --- a/doc/eval.texi +++ b/doc/eval.texi @@ -32,6 +32,10 @@ Compute arcsine of @var{x}. @item atan(x) Compute arctangent of @var{x}. +@item between(x, min, max) +Return 1 if @var{x} is greater than or equal to @var{min} and lesser than or +equal to @var{max}, 0 otherwise. + @item bitand(x, y) @item bitor(x, y) Compute bitwise and/or operation on @var{x} and @var{y}. |