]> git.sesse.net Git - ffmpeg/blobdiff - doc/eval.texi
pixdesc: Fix AVCOL_TRC_BT2020_12 name
[ffmpeg] / doc / eval.texi
index 7d8106b89e242cf99c5a24972c52e2107199e721..e1fd7ee48497f54dbf4670e36c3f1e6ef1d9fd68 100644 (file)
@@ -1,7 +1,7 @@
 @chapter Expression Evaluation
 @c man begin EXPRESSION EVALUATION
 
-When evaluating an arithemetic expression, Libav uses an internal
+When evaluating an arithmetic expression, Libav uses an internal
 formula evaluator, implemented through the @file{libavutil/eval.h}
 interface.
 
@@ -34,6 +34,8 @@ The following functions are available:
 @item abs(x)
 @item squish(x)
 @item gauss(x)
+@item isinf(x)
+Return 1.0 if @var{x} is +/-INFINITY, 0.0 otherwise.
 @item isnan(x)
 Return 1.0 if @var{x} is NAN, 0.0 otherwise.
 
@@ -53,7 +55,7 @@ returns the value stored in the internal variable.
 
 @item ld(var)
 Allow to load the value of the internal variable with number
-@var{var}, which was previosly stored with st(@var{var}, @var{expr}).
+@var{var}, which was previously stored with st(@var{var}, @var{expr}).
 The function returns the loaded value.
 
 @item while(cond, expr)