X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=doc%2Feval.texi;h=b325b37dff6599879c1502ee79685e0068595151;hb=552ec4c9fda480d61bff8447347b08f927f1fca3;hp=18d848749a0fb8db244ea6208a3fc200486667f9;hpb=2822361ed1fe18b03a35dfdbda811de6bd919e0a;p=ffmpeg diff --git a/doc/eval.texi b/doc/eval.texi index 18d848749a0..b325b37dff6 100644 --- a/doc/eval.texi +++ b/doc/eval.texi @@ -1,7 +1,7 @@ @chapter Expression Evaluation @c man begin EXPRESSION EVALUATION -When evaluating an arithemetic expression, FFmpeg uses an internal +When evaluating an arithmetic expression, FFmpeg uses an internal formula evaluator, implemented through the @file{libavutil/eval.h} interface. @@ -50,10 +50,11 @@ Allow to store the value of the expression @var{expr} in an internal variable. @var{var} specifies the number of the variable where to store the value, and it is a value ranging from 0 to 9. The function returns the value stored in the internal variable. +Note, Variables are currently not shared between expressions. @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) @@ -102,11 +103,11 @@ Return the greatest common divisor of @var{x} and @var{y}. If both @var{x} and The following constants are available: @table @option @item PI -area of the unit disc, approximatively 3.14 +area of the unit disc, approximately 3.14 @item E -exp(1) (Euler's number), approximatively 2.718 +exp(1) (Euler's number), approximately 2.718 @item PHI -golden ratio (1+sqrt(5))/2, approximatively 1.618 +golden ratio (1+sqrt(5))/2, approximately 1.618 @end table Note that: