]> git.sesse.net Git - ffmpeg/blob - libavutil/eval.c
lzo: fix memcpy_backptr() with 0 offset
[ffmpeg] / libavutil / eval.c
1 /*
2  * Copyright (c) 2002-2006 Michael Niedermayer <michaelni@gmx.at>
3  * Copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org>
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 /**
23  * @file
24  * simple arithmetic expression evaluator.
25  *
26  * see http://joe.hotchkiss.com/programming/eval/eval.html
27  */
28
29 #include "avutil.h"
30 #include "eval.h"
31 #include "log.h"
32
33 typedef struct Parser {
34     const AVClass *class;
35     int stack_index;
36     char *s;
37     const double *const_values;
38     const char * const *const_names;          // NULL terminated
39     double (* const *funcs1)(void *, double a);           // NULL terminated
40     const char * const *func1_names;          // NULL terminated
41     double (* const *funcs2)(void *, double a, double b); // NULL terminated
42     const char * const *func2_names;          // NULL terminated
43     void *opaque;
44     int log_offset;
45     void *log_ctx;
46 #define VARS 10
47     double *var;
48 } Parser;
49
50 static const AVClass class = { "Eval", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, offsetof(Parser,log_offset), offsetof(Parser,log_ctx) };
51
52 static const int8_t si_prefixes['z' - 'E' + 1] = {
53     ['y'-'E']= -24,
54     ['z'-'E']= -21,
55     ['a'-'E']= -18,
56     ['f'-'E']= -15,
57     ['p'-'E']= -12,
58     ['n'-'E']= - 9,
59     ['u'-'E']= - 6,
60     ['m'-'E']= - 3,
61     ['c'-'E']= - 2,
62     ['d'-'E']= - 1,
63     ['h'-'E']=   2,
64     ['k'-'E']=   3,
65     ['K'-'E']=   3,
66     ['M'-'E']=   6,
67     ['G'-'E']=   9,
68     ['T'-'E']=  12,
69     ['P'-'E']=  15,
70     ['E'-'E']=  18,
71     ['Z'-'E']=  21,
72     ['Y'-'E']=  24,
73 };
74
75 static const struct {
76     const char *name;
77     double value;
78 } constants[] = {
79     { "E",   M_E   },
80     { "PI",  M_PI  },
81     { "PHI", M_PHI },
82 };
83
84 double av_strtod(const char *numstr, char **tail)
85 {
86     double d;
87     char *next;
88     if(numstr[0]=='0' && (numstr[1]|0x20)=='x') {
89         d = strtoul(numstr, &next, 16);
90     } else
91         d = strtod(numstr, &next);
92     /* if parsing succeeded, check for and interpret postfixes */
93     if (next!=numstr) {
94         if (*next >= 'E' && *next <= 'z') {
95             int e= si_prefixes[*next - 'E'];
96             if (e) {
97                 if (next[1] == 'i') {
98                     d*= pow( 2, e/0.3);
99                     next+=2;
100                 } else {
101                     d*= pow(10, e);
102                     next++;
103                 }
104             }
105         }
106
107         if (*next=='B') {
108             d*=8;
109             next++;
110         }
111     }
112     /* if requested, fill in tail with the position after the last parsed
113        character */
114     if (tail)
115         *tail = next;
116     return d;
117 }
118
119 #define IS_IDENTIFIER_CHAR(c) ((c) - '0' <= 9U || (c) - 'a' <= 25U || (c) - 'A' <= 25U || (c) == '_')
120
121 static int strmatch(const char *s, const char *prefix)
122 {
123     int i;
124     for (i=0; prefix[i]; i++) {
125         if (prefix[i] != s[i]) return 0;
126     }
127     /* return 1 only if the s identifier is terminated */
128     return !IS_IDENTIFIER_CHAR(s[i]);
129 }
130
131 struct AVExpr {
132     enum {
133         e_value, e_const, e_func0, e_func1, e_func2,
134         e_squish, e_gauss, e_ld, e_isnan,
135         e_mod, e_max, e_min, e_eq, e_gt, e_gte,
136         e_pow, e_mul, e_div, e_add,
137         e_last, e_st, e_while, e_floor, e_ceil, e_trunc,
138         e_sqrt, e_not, e_random, e_hypot, e_gcd,
139     } type;
140     double value; // is sign in other types
141     union {
142         int const_index;
143         double (*func0)(double);
144         double (*func1)(void *, double);
145         double (*func2)(void *, double, double);
146     } a;
147     struct AVExpr *param[2];
148     double *var;
149 };
150
151 static double eval_expr(Parser *p, AVExpr *e)
152 {
153     switch (e->type) {
154         case e_value:  return e->value;
155         case e_const:  return e->value * p->const_values[e->a.const_index];
156         case e_func0:  return e->value * e->a.func0(eval_expr(p, e->param[0]));
157         case e_func1:  return e->value * e->a.func1(p->opaque, eval_expr(p, e->param[0]));
158         case e_func2:  return e->value * e->a.func2(p->opaque, eval_expr(p, e->param[0]), eval_expr(p, e->param[1]));
159         case e_squish: return 1/(1+exp(4*eval_expr(p, e->param[0])));
160         case e_gauss: { double d = eval_expr(p, e->param[0]); return exp(-d*d/2)/sqrt(2*M_PI); }
161         case e_ld:     return e->value * p->var[av_clip(eval_expr(p, e->param[0]), 0, VARS-1)];
162         case e_isnan:  return e->value * !!isnan(eval_expr(p, e->param[0]));
163         case e_floor:  return e->value * floor(eval_expr(p, e->param[0]));
164         case e_ceil :  return e->value * ceil (eval_expr(p, e->param[0]));
165         case e_trunc:  return e->value * trunc(eval_expr(p, e->param[0]));
166         case e_sqrt:   return e->value * sqrt (eval_expr(p, e->param[0]));
167         case e_not:    return e->value * (eval_expr(p, e->param[0]) == 0);
168         case e_random:{
169             int idx= av_clip(eval_expr(p, e->param[0]), 0, VARS-1);
170             uint64_t r= isnan(p->var[idx]) ? 0 : p->var[idx];
171             r= r*1664525+1013904223;
172             p->var[idx]= r;
173             return e->value * (r * (1.0/UINT64_MAX));
174         }
175         case e_while: {
176             double d = NAN;
177             while (eval_expr(p, e->param[0]))
178                 d=eval_expr(p, e->param[1]);
179             return d;
180         }
181         default: {
182             double d = eval_expr(p, e->param[0]);
183             double d2 = eval_expr(p, e->param[1]);
184             switch (e->type) {
185                 case e_mod: return e->value * (d - floor(d/d2)*d2);
186                 case e_gcd: return e->value * av_gcd(d,d2);
187                 case e_max: return e->value * (d >  d2 ?   d : d2);
188                 case e_min: return e->value * (d <  d2 ?   d : d2);
189                 case e_eq:  return e->value * (d == d2 ? 1.0 : 0.0);
190                 case e_gt:  return e->value * (d >  d2 ? 1.0 : 0.0);
191                 case e_gte: return e->value * (d >= d2 ? 1.0 : 0.0);
192                 case e_pow: return e->value * pow(d, d2);
193                 case e_mul: return e->value * (d * d2);
194                 case e_div: return e->value * (d / d2);
195                 case e_add: return e->value * (d + d2);
196                 case e_last:return e->value * d2;
197                 case e_st : return e->value * (p->var[av_clip(d, 0, VARS-1)]= d2);
198                 case e_hypot:return e->value * (sqrt(d*d + d2*d2));
199             }
200         }
201     }
202     return NAN;
203 }
204
205 static int parse_expr(AVExpr **e, Parser *p);
206
207 void av_expr_free(AVExpr *e)
208 {
209     if (!e) return;
210     av_expr_free(e->param[0]);
211     av_expr_free(e->param[1]);
212     av_freep(&e->var);
213     av_freep(&e);
214 }
215
216 static int parse_primary(AVExpr **e, Parser *p)
217 {
218     AVExpr *d = av_mallocz(sizeof(AVExpr));
219     char *next = p->s, *s0 = p->s;
220     int ret, i;
221
222     if (!d)
223         return AVERROR(ENOMEM);
224
225     /* number */
226     d->value = av_strtod(p->s, &next);
227     if (next != p->s) {
228         d->type = e_value;
229         p->s= next;
230         *e = d;
231         return 0;
232     }
233     d->value = 1;
234
235     /* named constants */
236     for (i=0; p->const_names && p->const_names[i]; i++) {
237         if (strmatch(p->s, p->const_names[i])) {
238             p->s+= strlen(p->const_names[i]);
239             d->type = e_const;
240             d->a.const_index = i;
241             *e = d;
242             return 0;
243         }
244     }
245     for (i = 0; i < FF_ARRAY_ELEMS(constants); i++) {
246         if (strmatch(p->s, constants[i].name)) {
247             p->s += strlen(constants[i].name);
248             d->type = e_value;
249             d->value = constants[i].value;
250             *e = d;
251             return 0;
252         }
253     }
254
255     p->s= strchr(p->s, '(');
256     if (p->s==NULL) {
257         av_log(p, AV_LOG_ERROR, "Undefined constant or missing '(' in '%s'\n", s0);
258         p->s= next;
259         av_expr_free(d);
260         return AVERROR(EINVAL);
261     }
262     p->s++; // "("
263     if (*next == '(') { // special case do-nothing
264         av_freep(&d);
265         if ((ret = parse_expr(&d, p)) < 0)
266             return ret;
267         if (p->s[0] != ')') {
268             av_log(p, AV_LOG_ERROR, "Missing ')' in '%s'\n", s0);
269             av_expr_free(d);
270             return AVERROR(EINVAL);
271         }
272         p->s++; // ")"
273         *e = d;
274         return 0;
275     }
276     if ((ret = parse_expr(&(d->param[0]), p)) < 0) {
277         av_expr_free(d);
278         return ret;
279     }
280     if (p->s[0]== ',') {
281         p->s++; // ","
282         parse_expr(&d->param[1], p);
283     }
284     if (p->s[0] != ')') {
285         av_log(p, AV_LOG_ERROR, "Missing ')' or too many args in '%s'\n", s0);
286         av_expr_free(d);
287         return AVERROR(EINVAL);
288     }
289     p->s++; // ")"
290
291     d->type = e_func0;
292          if (strmatch(next, "sinh"  )) d->a.func0 = sinh;
293     else if (strmatch(next, "cosh"  )) d->a.func0 = cosh;
294     else if (strmatch(next, "tanh"  )) d->a.func0 = tanh;
295     else if (strmatch(next, "sin"   )) d->a.func0 = sin;
296     else if (strmatch(next, "cos"   )) d->a.func0 = cos;
297     else if (strmatch(next, "tan"   )) d->a.func0 = tan;
298     else if (strmatch(next, "atan"  )) d->a.func0 = atan;
299     else if (strmatch(next, "asin"  )) d->a.func0 = asin;
300     else if (strmatch(next, "acos"  )) d->a.func0 = acos;
301     else if (strmatch(next, "exp"   )) d->a.func0 = exp;
302     else if (strmatch(next, "log"   )) d->a.func0 = log;
303     else if (strmatch(next, "abs"   )) d->a.func0 = fabs;
304     else if (strmatch(next, "squish")) d->type = e_squish;
305     else if (strmatch(next, "gauss" )) d->type = e_gauss;
306     else if (strmatch(next, "mod"   )) d->type = e_mod;
307     else if (strmatch(next, "max"   )) d->type = e_max;
308     else if (strmatch(next, "min"   )) d->type = e_min;
309     else if (strmatch(next, "eq"    )) d->type = e_eq;
310     else if (strmatch(next, "gte"   )) d->type = e_gte;
311     else if (strmatch(next, "gt"    )) d->type = e_gt;
312     else if (strmatch(next, "lte"   )) { AVExpr *tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gt; }
313     else if (strmatch(next, "lt"    )) { AVExpr *tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gte; }
314     else if (strmatch(next, "ld"    )) d->type = e_ld;
315     else if (strmatch(next, "isnan" )) d->type = e_isnan;
316     else if (strmatch(next, "st"    )) d->type = e_st;
317     else if (strmatch(next, "while" )) d->type = e_while;
318     else if (strmatch(next, "floor" )) d->type = e_floor;
319     else if (strmatch(next, "ceil"  )) d->type = e_ceil;
320     else if (strmatch(next, "trunc" )) d->type = e_trunc;
321     else if (strmatch(next, "sqrt"  )) d->type = e_sqrt;
322     else if (strmatch(next, "not"   )) d->type = e_not;
323     else if (strmatch(next, "pow"   )) d->type = e_pow;
324     else if (strmatch(next, "random")) d->type = e_random;
325     else if (strmatch(next, "hypot" )) d->type = e_hypot;
326     else if (strmatch(next, "gcd"   )) d->type = e_gcd;
327     else {
328         for (i=0; p->func1_names && p->func1_names[i]; i++) {
329             if (strmatch(next, p->func1_names[i])) {
330                 d->a.func1 = p->funcs1[i];
331                 d->type = e_func1;
332                 *e = d;
333                 return 0;
334             }
335         }
336
337         for (i=0; p->func2_names && p->func2_names[i]; i++) {
338             if (strmatch(next, p->func2_names[i])) {
339                 d->a.func2 = p->funcs2[i];
340                 d->type = e_func2;
341                 *e = d;
342                 return 0;
343             }
344         }
345
346         av_log(p, AV_LOG_ERROR, "Unknown function in '%s'\n", s0);
347         av_expr_free(d);
348         return AVERROR(EINVAL);
349     }
350
351     *e = d;
352     return 0;
353 }
354
355 static AVExpr *new_eval_expr(int type, int value, AVExpr *p0, AVExpr *p1)
356 {
357     AVExpr *e = av_mallocz(sizeof(AVExpr));
358     if (!e)
359         return NULL;
360     e->type     =type   ;
361     e->value    =value  ;
362     e->param[0] =p0     ;
363     e->param[1] =p1     ;
364     return e;
365 }
366
367 static int parse_pow(AVExpr **e, Parser *p, int *sign)
368 {
369     *sign= (*p->s == '+') - (*p->s == '-');
370     p->s += *sign&1;
371     return parse_primary(e, p);
372 }
373
374 static int parse_factor(AVExpr **e, Parser *p)
375 {
376     int sign, sign2, ret;
377     AVExpr *e0, *e1, *e2;
378     if ((ret = parse_pow(&e0, p, &sign)) < 0)
379         return ret;
380     while(p->s[0]=='^'){
381         e1 = e0;
382         p->s++;
383         if ((ret = parse_pow(&e2, p, &sign2)) < 0) {
384             av_expr_free(e1);
385             return ret;
386         }
387         e0 = new_eval_expr(e_pow, 1, e1, e2);
388         if (!e0) {
389             av_expr_free(e1);
390             av_expr_free(e2);
391             return AVERROR(ENOMEM);
392         }
393         if (e0->param[1]) e0->param[1]->value *= (sign2|1);
394     }
395     if (e0) e0->value *= (sign|1);
396
397     *e = e0;
398     return 0;
399 }
400
401 static int parse_term(AVExpr **e, Parser *p)
402 {
403     int ret;
404     AVExpr *e0, *e1, *e2;
405     if ((ret = parse_factor(&e0, p)) < 0)
406         return ret;
407     while (p->s[0]=='*' || p->s[0]=='/') {
408         int c= *p->s++;
409         e1 = e0;
410         if ((ret = parse_factor(&e2, p)) < 0) {
411             av_expr_free(e1);
412             return ret;
413         }
414         e0 = new_eval_expr(c == '*' ? e_mul : e_div, 1, e1, e2);
415         if (!e0) {
416             av_expr_free(e1);
417             av_expr_free(e2);
418             return AVERROR(ENOMEM);
419         }
420     }
421     *e = e0;
422     return 0;
423 }
424
425 static int parse_subexpr(AVExpr **e, Parser *p)
426 {
427     int ret;
428     AVExpr *e0, *e1, *e2;
429     if ((ret = parse_term(&e0, p)) < 0)
430         return ret;
431     while (*p->s == '+' || *p->s == '-') {
432         e1 = e0;
433         if ((ret = parse_term(&e2, p)) < 0) {
434             av_expr_free(e1);
435             return ret;
436         }
437         e0 = new_eval_expr(e_add, 1, e1, e2);
438         if (!e0) {
439             av_expr_free(e1);
440             av_expr_free(e2);
441             return AVERROR(ENOMEM);
442         }
443     };
444
445     *e = e0;
446     return 0;
447 }
448
449 static int parse_expr(AVExpr **e, Parser *p)
450 {
451     int ret;
452     AVExpr *e0, *e1, *e2;
453     if (p->stack_index <= 0) //protect against stack overflows
454         return AVERROR(EINVAL);
455     p->stack_index--;
456
457     if ((ret = parse_subexpr(&e0, p)) < 0)
458         return ret;
459     while (*p->s == ';') {
460         p->s++;
461         e1 = e0;
462         if ((ret = parse_subexpr(&e2, p)) < 0) {
463             av_expr_free(e1);
464             return ret;
465         }
466         e0 = new_eval_expr(e_last, 1, e1, e2);
467         if (!e0) {
468             av_expr_free(e1);
469             av_expr_free(e2);
470             return AVERROR(ENOMEM);
471         }
472     };
473
474     p->stack_index++;
475     *e = e0;
476     return 0;
477 }
478
479 static int verify_expr(AVExpr *e)
480 {
481     if (!e) return 0;
482     switch (e->type) {
483         case e_value:
484         case e_const: return 1;
485         case e_func0:
486         case e_func1:
487         case e_squish:
488         case e_ld:
489         case e_gauss:
490         case e_isnan:
491         case e_floor:
492         case e_ceil:
493         case e_trunc:
494         case e_sqrt:
495         case e_not:
496         case e_random:
497             return verify_expr(e->param[0]);
498         default: return verify_expr(e->param[0]) && verify_expr(e->param[1]);
499     }
500 }
501
502 int av_expr_parse(AVExpr **expr, const char *s,
503                   const char * const *const_names,
504                   const char * const *func1_names, double (* const *funcs1)(void *, double),
505                   const char * const *func2_names, double (* const *funcs2)(void *, double, double),
506                   int log_offset, void *log_ctx)
507 {
508     Parser p = { 0 };
509     AVExpr *e = NULL;
510     char *w = av_malloc(strlen(s) + 1);
511     char *wp = w;
512     const char *s0 = s;
513     int ret = 0;
514
515     if (!w)
516         return AVERROR(ENOMEM);
517
518     while (*s)
519         if (!isspace(*s++)) *wp++ = s[-1];
520     *wp++ = 0;
521
522     p.class      = &class;
523     p.stack_index=100;
524     p.s= w;
525     p.const_names = const_names;
526     p.funcs1      = funcs1;
527     p.func1_names = func1_names;
528     p.funcs2      = funcs2;
529     p.func2_names = func2_names;
530     p.log_offset = log_offset;
531     p.log_ctx    = log_ctx;
532
533     if ((ret = parse_expr(&e, &p)) < 0)
534         goto end;
535     if (*p.s) {
536         av_expr_free(e);
537         av_log(&p, AV_LOG_ERROR, "Invalid chars '%s' at the end of expression '%s'\n", p.s, s0);
538         ret = AVERROR(EINVAL);
539         goto end;
540     }
541     if (!verify_expr(e)) {
542         av_expr_free(e);
543         ret = AVERROR(EINVAL);
544         goto end;
545     }
546     e->var= av_mallocz(sizeof(double) *VARS);
547     *expr = e;
548 end:
549     av_free(w);
550     return ret;
551 }
552
553 double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
554 {
555     Parser p = { 0 };
556     p.var= e->var;
557
558     p.const_values = const_values;
559     p.opaque     = opaque;
560     return eval_expr(&p, e);
561 }
562
563 int av_expr_parse_and_eval(double *d, const char *s,
564                            const char * const *const_names, const double *const_values,
565                            const char * const *func1_names, double (* const *funcs1)(void *, double),
566                            const char * const *func2_names, double (* const *funcs2)(void *, double, double),
567                            void *opaque, int log_offset, void *log_ctx)
568 {
569     AVExpr *e = NULL;
570     int ret = av_expr_parse(&e, s, const_names, func1_names, funcs1, func2_names, funcs2, log_offset, log_ctx);
571
572     if (ret < 0) {
573         *d = NAN;
574         return ret;
575     }
576     *d = av_expr_eval(e, const_values, opaque);
577     av_expr_free(e);
578     return isnan(*d) ? AVERROR(EINVAL) : 0;
579 }
580
581 #if FF_API_OLD_EVAL_NAMES
582 // LCOV_EXCL_START
583 int av_parse_expr(AVExpr **expr, const char *s,
584                   const char * const *const_names,
585                   const char * const *func1_names, double (* const *funcs1)(void *, double),
586                   const char * const *func2_names, double (* const *funcs2)(void *, double, double),
587                   int log_offset, void *log_ctx)
588 {
589     return av_expr_parse(expr, s, const_names, func1_names, funcs1, func2_names, funcs2,
590                       log_offset, log_ctx);
591 }
592
593 double av_eval_expr(AVExpr *e, const double *const_values, void *opaque)
594 {
595     return av_expr_eval(e, const_values, opaque);
596 }
597
598 int av_parse_and_eval_expr(double *res, const char *s,
599                            const char * const *const_names, const double *const_values,
600                            const char * const *func1_names, double (* const *funcs1)(void *, double),
601                            const char * const *func2_names, double (* const *funcs2)(void *, double, double),
602                            void *opaque, int log_offset, void *log_ctx)
603 {
604     return av_expr_parse_and_eval(res, s, const_names, const_values, func1_names, funcs1, func2_names, funcs2,
605                                   opaque, log_offset, log_ctx);
606 }
607
608 void av_free_expr(AVExpr *e)
609 {
610     av_expr_free(e);
611 }
612 // LCOV_EXCL_STOP
613 #endif /* FF_API_OLD_EVAL_NAMES */
614
615 #ifdef TEST
616 // LCOV_EXCL_START
617 #undef printf
618 #include <string.h>
619
620 static double const_values[] = {
621     M_PI,
622     M_E,
623     0
624 };
625
626 static const char *const_names[] = {
627     "PI",
628     "E",
629     0
630 };
631
632 int main(int argc, char **argv)
633 {
634     int i;
635     double d;
636     const char **expr, *exprs[] = {
637         "",
638         "1;2",
639         "-20",
640         "-PI",
641         "+PI",
642         "1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)",
643         "80G/80Gi",
644         "1k",
645         "1Gi",
646         "1gi",
647         "1GiFoo",
648         "1k+1k",
649         "1Gi*3foo",
650         "foo",
651         "foo(",
652         "foo()",
653         "foo)",
654         "sin",
655         "sin(",
656         "sin()",
657         "sin)",
658         "sin 10",
659         "sin(1,2,3)",
660         "sin(1 )",
661         "1",
662         "1foo",
663         "bar + PI + E + 100f*2 + foo",
664         "13k + 12f - foo(1, 2)",
665         "1gi",
666         "1Gi",
667         "st(0, 123)",
668         "st(1, 123); ld(1)",
669         /* compute 1+2+...+N */
670         "st(0, 1); while(lte(ld(0), 100), st(1, ld(1)+ld(0));st(0, ld(0)+1)); ld(1)",
671         /* compute Fib(N) */
672         "st(1, 1); st(2, 2); st(0, 1); while(lte(ld(0),10), st(3, ld(1)+ld(2)); st(1, ld(2)); st(2, ld(3)); st(0, ld(0)+1)); ld(3)",
673         "while(0, 10)",
674         "st(0, 1); while(lte(ld(0),100), st(1, ld(1)+ld(0)); st(0, ld(0)+1))",
675         "isnan(1)",
676         "isnan(NAN)",
677         "floor(NAN)",
678         "floor(123.123)",
679         "floor(-123.123)",
680         "trunc(123.123)",
681         "trunc(-123.123)",
682         "ceil(123.123)",
683         "ceil(-123.123)",
684         "sqrt(1764)",
685         "isnan(sqrt(-1))",
686         "not(1)",
687         "not(NAN)",
688         "not(0)",
689         "pow(0,1.23)",
690         "pow(PI,1.23)",
691         "PI^1.23",
692         "pow(-1,1.23)",
693         NULL
694     };
695
696     for (expr = exprs; *expr; expr++) {
697         printf("Evaluating '%s'\n", *expr);
698         av_expr_parse_and_eval(&d, *expr,
699                                const_names, const_values,
700                                NULL, NULL, NULL, NULL, NULL, 0, NULL);
701         if(isnan(d)){
702             printf("'%s' -> nan\n\n", *expr);
703         }else{
704             printf("'%s' -> %f\n\n", *expr, d);
705         }
706     }
707
708     av_expr_parse_and_eval(&d, "1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)",
709                            const_names, const_values,
710                            NULL, NULL, NULL, NULL, NULL, 0, NULL);
711     printf("%f == 12.7\n", d);
712     av_expr_parse_and_eval(&d, "80G/80Gi",
713                            const_names, const_values,
714                            NULL, NULL, NULL, NULL, NULL, 0, NULL);
715     printf("%f == 0.931322575\n", d);
716
717     if (argc > 1 && !strcmp(argv[1], "-t")) {
718         for (i = 0; i < 1050; i++) {
719             START_TIMER;
720             av_expr_parse_and_eval(&d, "1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)",
721                                    const_names, const_values,
722                                    NULL, NULL, NULL, NULL, NULL, 0, NULL);
723             STOP_TIMER("av_expr_parse_and_eval");
724         }
725     }
726
727     return 0;
728 }
729 // LCOV_EXCL_STOP
730 #endif