diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2014-07-04 14:13:11 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2014-07-17 11:29:01 +0200 |
commit | f3e886c7dfcc6ca6e2b430b0978497da9136201d (patch) | |
tree | 21b6210f04a22f9b28480a3b0724c0760ac56a4f /tests/ref | |
parent | 7cd6d61da53cad48703e6bf9e6aad003f1dfec20 (diff) | |
download | ffmpeg-f3e886c7dfcc6ca6e2b430b0978497da9136201d.tar.gz |
lavu/eval: add clip function
Diffstat (limited to 'tests/ref')
-rw-r--r-- | tests/ref/fate/eval | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/ref/fate/eval b/tests/ref/fate/eval index 97e0b20dd3..914b13ccfa 100644 --- a/tests/ref/fate/eval +++ b/tests/ref/fate/eval @@ -268,5 +268,14 @@ Evaluating 'between(-4, -2, -1)' Evaluating 'between(1,2)' 'between(1,2)' -> nan +Evaluating 'clip(0, 2, 1)' +'clip(0, 2, 1)' -> nan + +Evaluating 'clip(0/0, 1, 2)' +'clip(0/0, 1, 2)' -> nan + +Evaluating 'clip(0, 0/0, 1)' +'clip(0, 0/0, 1)' -> nan + 12.700000 == 12.7 0.931323 == 0.931322575 |