OSDN Git Service

Merge remote-tracking branch 'qatar/master'
[coroid/ffmpeg_saccubus.git] / 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[VARS];
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 double av_strtod(const char *numstr, char **tail)
76 {
77     double d;
78     char *next;
79     if(numstr[0]=='0' && (numstr[1]|0x20)=='x') {
80         d = strtoul(numstr, &next, 16);
81     } else
82         d = strtod(numstr, &next);
83     /* if parsing succeeded, check for and interpret postfixes */
84     if (next!=numstr) {
85         if (*next >= 'E' && *next <= 'z') {
86             int e= si_prefixes[*next - 'E'];
87             if (e) {
88                 if (next[1] == 'i') {
89                     d*= pow( 2, e/0.3);
90                     next+=2;
91                 } else {
92                     d*= pow(10, e);
93                     next++;
94                 }
95             }
96         }
97
98         if (*next=='B') {
99             d*=8;
100             next++;
101         }
102     }
103     /* if requested, fill in tail with the position after the last parsed
104        character */
105     if (tail)
106         *tail = next;
107     return d;
108 }
109
110 #define IS_IDENTIFIER_CHAR(c) ((c) - '0' <= 9U || (c) - 'a' <= 25U || (c) - 'A' <= 25U || (c) == '_')
111
112 static int strmatch(const char *s, const char *prefix)
113 {
114     int i;
115     for (i=0; prefix[i]; i++) {
116         if (prefix[i] != s[i]) return 0;
117     }
118     /* return 1 only if the s identifier is terminated */
119     return !IS_IDENTIFIER_CHAR(s[i]);
120 }
121
122 struct AVExpr {
123     enum {
124         e_value, e_const, e_func0, e_func1, e_func2,
125         e_squish, e_gauss, e_ld, e_isnan,
126         e_mod, e_max, e_min, e_eq, e_gt, e_gte,
127         e_pow, e_mul, e_div, e_add,
128         e_last, e_st, e_while, e_floor, e_ceil, e_trunc,
129         e_sqrt, e_not,
130     } type;
131     double value; // is sign in other types
132     union {
133         int const_index;
134         double (*func0)(double);
135         double (*func1)(void *, double);
136         double (*func2)(void *, double, double);
137     } a;
138     struct AVExpr *param[2];
139 };
140
141 static double eval_expr(Parser *p, AVExpr *e)
142 {
143     switch (e->type) {
144         case e_value:  return e->value;
145         case e_const:  return e->value * p->const_values[e->a.const_index];
146         case e_func0:  return e->value * e->a.func0(eval_expr(p, e->param[0]));
147         case e_func1:  return e->value * e->a.func1(p->opaque, eval_expr(p, e->param[0]));
148         case e_func2:  return e->value * e->a.func2(p->opaque, eval_expr(p, e->param[0]), eval_expr(p, e->param[1]));
149         case e_squish: return 1/(1+exp(4*eval_expr(p, e->param[0])));
150         case e_gauss: { double d = eval_expr(p, e->param[0]); return exp(-d*d/2)/sqrt(2*M_PI); }
151         case e_ld:     return e->value * p->var[av_clip(eval_expr(p, e->param[0]), 0, VARS-1)];
152         case e_isnan:  return e->value * !!isnan(eval_expr(p, e->param[0]));
153         case e_floor:  return e->value * floor(eval_expr(p, e->param[0]));
154         case e_ceil :  return e->value * ceil (eval_expr(p, e->param[0]));
155         case e_trunc:  return e->value * trunc(eval_expr(p, e->param[0]));
156         case e_sqrt:   return e->value * sqrt (eval_expr(p, e->param[0]));
157         case e_not:    return e->value * eval_expr(p, e->param[0]) == 0;
158         case e_while: {
159             double d = NAN;
160             while (eval_expr(p, e->param[0]))
161                 d=eval_expr(p, e->param[1]);
162             return d;
163         }
164         default: {
165             double d = eval_expr(p, e->param[0]);
166             double d2 = eval_expr(p, e->param[1]);
167             switch (e->type) {
168                 case e_mod: return e->value * (d - floor(d/d2)*d2);
169                 case e_max: return e->value * (d >  d2 ?   d : d2);
170                 case e_min: return e->value * (d <  d2 ?   d : d2);
171                 case e_eq:  return e->value * (d == d2 ? 1.0 : 0.0);
172                 case e_gt:  return e->value * (d >  d2 ? 1.0 : 0.0);
173                 case e_gte: return e->value * (d >= d2 ? 1.0 : 0.0);
174                 case e_pow: return e->value * pow(d, d2);
175                 case e_mul: return e->value * (d * d2);
176                 case e_div: return e->value * (d / d2);
177                 case e_add: return e->value * (d + d2);
178                 case e_last:return e->value * d2;
179                 case e_st : return e->value * (p->var[av_clip(d, 0, VARS-1)]= d2);
180             }
181         }
182     }
183     return NAN;
184 }
185
186 static int parse_expr(AVExpr **e, Parser *p);
187
188 void av_expr_free(AVExpr *e)
189 {
190     if (!e) return;
191     av_expr_free(e->param[0]);
192     av_expr_free(e->param[1]);
193     av_freep(&e);
194 }
195
196 static int parse_primary(AVExpr **e, Parser *p)
197 {
198     AVExpr *d = av_mallocz(sizeof(AVExpr));
199     char *next = p->s, *s0 = p->s;
200     int ret, i;
201
202     if (!d)
203         return AVERROR(ENOMEM);
204
205     /* number */
206     d->value = av_strtod(p->s, &next);
207     if (next != p->s) {
208         d->type = e_value;
209         p->s= next;
210         *e = d;
211         return 0;
212     }
213     d->value = 1;
214
215     /* named constants */
216     for (i=0; p->const_names && p->const_names[i]; i++) {
217         if (strmatch(p->s, p->const_names[i])) {
218             p->s+= strlen(p->const_names[i]);
219             d->type = e_const;
220             d->a.const_index = i;
221             *e = d;
222             return 0;
223         }
224     }
225
226     p->s= strchr(p->s, '(');
227     if (p->s==NULL) {
228         av_log(p, AV_LOG_ERROR, "Undefined constant or missing '(' in '%s'\n", s0);
229         p->s= next;
230         av_expr_free(d);
231         return AVERROR(EINVAL);
232     }
233     p->s++; // "("
234     if (*next == '(') { // special case do-nothing
235         av_freep(&d);
236         if ((ret = parse_expr(&d, p)) < 0)
237             return ret;
238         if (p->s[0] != ')') {
239             av_log(p, AV_LOG_ERROR, "Missing ')' in '%s'\n", s0);
240             av_expr_free(d);
241             return AVERROR(EINVAL);
242         }
243         p->s++; // ")"
244         *e = d;
245         return 0;
246     }
247     if ((ret = parse_expr(&(d->param[0]), p)) < 0) {
248         av_expr_free(d);
249         return ret;
250     }
251     if (p->s[0]== ',') {
252         p->s++; // ","
253         parse_expr(&d->param[1], p);
254     }
255     if (p->s[0] != ')') {
256         av_log(p, AV_LOG_ERROR, "Missing ')' or too many args in '%s'\n", s0);
257         av_expr_free(d);
258         return AVERROR(EINVAL);
259     }
260     p->s++; // ")"
261
262     d->type = e_func0;
263          if (strmatch(next, "sinh"  )) d->a.func0 = sinh;
264     else if (strmatch(next, "cosh"  )) d->a.func0 = cosh;
265     else if (strmatch(next, "tanh"  )) d->a.func0 = tanh;
266     else if (strmatch(next, "sin"   )) d->a.func0 = sin;
267     else if (strmatch(next, "cos"   )) d->a.func0 = cos;
268     else if (strmatch(next, "tan"   )) d->a.func0 = tan;
269     else if (strmatch(next, "atan"  )) d->a.func0 = atan;
270     else if (strmatch(next, "asin"  )) d->a.func0 = asin;
271     else if (strmatch(next, "acos"  )) d->a.func0 = acos;
272     else if (strmatch(next, "exp"   )) d->a.func0 = exp;
273     else if (strmatch(next, "log"   )) d->a.func0 = log;
274     else if (strmatch(next, "abs"   )) d->a.func0 = fabs;
275     else if (strmatch(next, "squish")) d->type = e_squish;
276     else if (strmatch(next, "gauss" )) d->type = e_gauss;
277     else if (strmatch(next, "mod"   )) d->type = e_mod;
278     else if (strmatch(next, "max"   )) d->type = e_max;
279     else if (strmatch(next, "min"   )) d->type = e_min;
280     else if (strmatch(next, "eq"    )) d->type = e_eq;
281     else if (strmatch(next, "gte"   )) d->type = e_gte;
282     else if (strmatch(next, "gt"    )) d->type = e_gt;
283     else if (strmatch(next, "lte"   )) { AVExpr *tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gt; }
284     else if (strmatch(next, "lt"    )) { AVExpr *tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gte; }
285     else if (strmatch(next, "ld"    )) d->type = e_ld;
286     else if (strmatch(next, "isnan" )) d->type = e_isnan;
287     else if (strmatch(next, "st"    )) d->type = e_st;
288     else if (strmatch(next, "while" )) d->type = e_while;
289     else if (strmatch(next, "floor" )) d->type = e_floor;
290     else if (strmatch(next, "ceil"  )) d->type = e_ceil;
291     else if (strmatch(next, "trunc" )) d->type = e_trunc;
292     else if (strmatch(next, "sqrt"  )) d->type = e_sqrt;
293     else if (strmatch(next, "not"   )) d->type = e_not;
294     else if (strmatch(next, "pow"   )) d->type = e_pow;
295     else {
296         for (i=0; p->func1_names && p->func1_names[i]; i++) {
297             if (strmatch(next, p->func1_names[i])) {
298                 d->a.func1 = p->funcs1[i];
299                 d->type = e_func1;
300                 *e = d;
301                 return 0;
302             }
303         }
304
305         for (i=0; p->func2_names && p->func2_names[i]; i++) {
306             if (strmatch(next, p->func2_names[i])) {
307                 d->a.func2 = p->funcs2[i];
308                 d->type = e_func2;
309                 *e = d;
310                 return 0;
311             }
312         }
313
314         av_log(p, AV_LOG_ERROR, "Unknown function in '%s'\n", s0);
315         av_expr_free(d);
316         return AVERROR(EINVAL);
317     }
318
319     *e = d;
320     return 0;
321 }
322
323 static AVExpr *new_eval_expr(int type, int value, AVExpr *p0, AVExpr *p1)
324 {
325     AVExpr *e = av_mallocz(sizeof(AVExpr));
326     if (!e)
327         return NULL;
328     e->type     =type   ;
329     e->value    =value  ;
330     e->param[0] =p0     ;
331     e->param[1] =p1     ;
332     return e;
333 }
334
335 static int parse_pow(AVExpr **e, Parser *p, int *sign)
336 {
337     *sign= (*p->s == '+') - (*p->s == '-');
338     p->s += *sign&1;
339     return parse_primary(e, p);
340 }
341
342 static int parse_factor(AVExpr **e, Parser *p)
343 {
344     int sign, sign2, ret;
345     AVExpr *e0, *e1, *e2;
346     if ((ret = parse_pow(&e0, p, &sign)) < 0)
347         return ret;
348     while(p->s[0]=='^'){
349         e1 = e0;
350         p->s++;
351         if ((ret = parse_pow(&e2, p, &sign2)) < 0) {
352             av_expr_free(e1);
353             return ret;
354         }
355         e0 = new_eval_expr(e_pow, 1, e1, e2);
356         if (!e0) {
357             av_expr_free(e1);
358             av_expr_free(e2);
359             return AVERROR(ENOMEM);
360         }
361         if (e0->param[1]) e0->param[1]->value *= (sign2|1);
362     }
363     if (e0) e0->value *= (sign|1);
364
365     *e = e0;
366     return 0;
367 }
368
369 static int parse_term(AVExpr **e, Parser *p)
370 {
371     int ret;
372     AVExpr *e0, *e1, *e2;
373     if ((ret = parse_factor(&e0, p)) < 0)
374         return ret;
375     while (p->s[0]=='*' || p->s[0]=='/') {
376         int c= *p->s++;
377         e1 = e0;
378         if ((ret = parse_factor(&e2, p)) < 0) {
379             av_expr_free(e1);
380             return ret;
381         }
382         e0 = new_eval_expr(c == '*' ? e_mul : e_div, 1, e1, e2);
383         if (!e0) {
384             av_expr_free(e1);
385             av_expr_free(e2);
386             return AVERROR(ENOMEM);
387         }
388     }
389     *e = e0;
390     return 0;
391 }
392
393 static int parse_subexpr(AVExpr **e, Parser *p)
394 {
395     int ret;
396     AVExpr *e0, *e1, *e2;
397     if ((ret = parse_term(&e0, p)) < 0)
398         return ret;
399     while (*p->s == '+' || *p->s == '-') {
400         e1 = e0;
401         if ((ret = parse_term(&e2, p)) < 0) {
402             av_expr_free(e1);
403             return ret;
404         }
405         e0 = new_eval_expr(e_add, 1, e1, e2);
406         if (!e0) {
407             av_expr_free(e1);
408             av_expr_free(e2);
409             return AVERROR(ENOMEM);
410         }
411     };
412
413     *e = e0;
414     return 0;
415 }
416
417 static int parse_expr(AVExpr **e, Parser *p)
418 {
419     int ret;
420     AVExpr *e0, *e1, *e2;
421     if (p->stack_index <= 0) //protect against stack overflows
422         return AVERROR(EINVAL);
423     p->stack_index--;
424
425     if ((ret = parse_subexpr(&e0, p)) < 0)
426         return ret;
427     while (*p->s == ';') {
428         p->s++;
429         e1 = e0;
430         if ((ret = parse_subexpr(&e2, p)) < 0) {
431             av_expr_free(e1);
432             return ret;
433         }
434         e0 = new_eval_expr(e_last, 1, e1, e2);
435         if (!e0) {
436             av_expr_free(e1);
437             av_expr_free(e2);
438             return AVERROR(ENOMEM);
439         }
440     };
441
442     p->stack_index++;
443     *e = e0;
444     return 0;
445 }
446
447 static int verify_expr(AVExpr *e)
448 {
449     if (!e) return 0;
450     switch (e->type) {
451         case e_value:
452         case e_const: return 1;
453         case e_func0:
454         case e_func1:
455         case e_squish:
456         case e_ld:
457         case e_gauss:
458         case e_isnan:
459         case e_floor:
460         case e_ceil:
461         case e_trunc:
462         case e_sqrt:
463         case e_not:
464             return verify_expr(e->param[0]);
465         default: return verify_expr(e->param[0]) && verify_expr(e->param[1]);
466     }
467 }
468
469 int av_expr_parse(AVExpr **expr, const char *s,
470                   const char * const *const_names,
471                   const char * const *func1_names, double (* const *funcs1)(void *, double),
472                   const char * const *func2_names, double (* const *funcs2)(void *, double, double),
473                   int log_offset, void *log_ctx)
474 {
475     Parser p = { 0 };
476     AVExpr *e = NULL;
477     char *w = av_malloc(strlen(s) + 1);
478     char *wp = w;
479     const char *s0 = s;
480     int ret = 0;
481
482     if (!w)
483         return AVERROR(ENOMEM);
484
485     while (*s)
486         if (!isspace(*s++)) *wp++ = s[-1];
487     *wp++ = 0;
488
489     p.class      = &class;
490     p.stack_index=100;
491     p.s= w;
492     p.const_names = const_names;
493     p.funcs1      = funcs1;
494     p.func1_names = func1_names;
495     p.funcs2      = funcs2;
496     p.func2_names = func2_names;
497     p.log_offset = log_offset;
498     p.log_ctx    = log_ctx;
499
500     if ((ret = parse_expr(&e, &p)) < 0)
501         goto end;
502     if (*p.s) {
503         av_expr_free(e);
504         av_log(&p, AV_LOG_ERROR, "Invalid chars '%s' at the end of expression '%s'\n", p.s, s0);
505         ret = AVERROR(EINVAL);
506         goto end;
507     }
508     if (!verify_expr(e)) {
509         av_expr_free(e);
510         ret = AVERROR(EINVAL);
511         goto end;
512     }
513     *expr = e;
514 end:
515     av_free(w);
516     return ret;
517 }
518
519 double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
520 {
521     Parser p = { 0 };
522
523     p.const_values = const_values;
524     p.opaque     = opaque;
525     return eval_expr(&p, e);
526 }
527
528 int av_expr_parse_and_eval(double *d, const char *s,
529                            const char * const *const_names, const double *const_values,
530                            const char * const *func1_names, double (* const *funcs1)(void *, double),
531                            const char * const *func2_names, double (* const *funcs2)(void *, double, double),
532                            void *opaque, int log_offset, void *log_ctx)
533 {
534     AVExpr *e = NULL;
535     int ret = av_expr_parse(&e, s, const_names, func1_names, funcs1, func2_names, funcs2, log_offset, log_ctx);
536
537     if (ret < 0) {
538         *d = NAN;
539         return ret;
540     }
541     *d = av_expr_eval(e, const_values, opaque);
542     av_expr_free(e);
543     return isnan(*d) ? AVERROR(EINVAL) : 0;
544 }
545
546 #if FF_API_OLD_EVAL_NAMES
547 int av_parse_expr(AVExpr **expr, const char *s,
548                   const char * const *const_names,
549                   const char * const *func1_names, double (* const *funcs1)(void *, double),
550                   const char * const *func2_names, double (* const *funcs2)(void *, double, double),
551                   int log_offset, void *log_ctx)
552 {
553     return av_expr_parse(expr, s, const_names, func1_names, funcs1, func2_names, funcs2,
554                       log_offset, log_ctx);
555 }
556
557 double av_eval_expr(AVExpr *e, const double *const_values, void *opaque)
558 {
559     return av_expr_eval(e, const_values, opaque);
560 }
561
562 int av_parse_and_eval_expr(double *res, const char *s,
563                            const char * const *const_names, const double *const_values,
564                            const char * const *func1_names, double (* const *funcs1)(void *, double),
565                            const char * const *func2_names, double (* const *funcs2)(void *, double, double),
566                            void *opaque, int log_offset, void *log_ctx)
567 {
568     return av_expr_parse_and_eval(res, s, const_names, const_values, func1_names, funcs1, func2_names, funcs2,
569                                   opaque, log_offset, log_ctx);
570 }
571
572 void av_free_expr(AVExpr *e)
573 {
574     av_expr_free(e);
575 }
576 #endif /* FF_API_OLD_EVAL_NAMES */
577
578 #ifdef TEST
579 #undef printf
580 #include <string.h>
581
582 static double const_values[] = {
583     M_PI,
584     M_E,
585     0
586 };
587
588 static const char *const_names[] = {
589     "PI",
590     "E",
591     0
592 };
593
594 int main(int argc, char **argv)
595 {
596     int i;
597     double d;
598     const char **expr, *exprs[] = {
599         "",
600         "1;2",
601         "-20",
602         "-PI",
603         "+PI",
604         "1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)",
605         "80G/80Gi",
606         "1k",
607         "1Gi",
608         "1gi",
609         "1GiFoo",
610         "1k+1k",
611         "1Gi*3foo",
612         "foo",
613         "foo(",
614         "foo()",
615         "foo)",
616         "sin",
617         "sin(",
618         "sin()",
619         "sin)",
620         "sin 10",
621         "sin(1,2,3)",
622         "sin(1 )",
623         "1",
624         "1foo",
625         "bar + PI + E + 100f*2 + foo",
626         "13k + 12f - foo(1, 2)",
627         "1gi",
628         "1Gi",
629         "st(0, 123)",
630         "st(1, 123); ld(1)",
631         /* compute 1+2+...+N */
632         "st(0, 1); while(lte(ld(0), 100), st(1, ld(1)+ld(0));st(0, ld(0)+1)); ld(1)",
633         /* compute Fib(N) */
634         "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)",
635         "while(0, 10)",
636         "st(0, 1); while(lte(ld(0),100), st(1, ld(1)+ld(0)); st(0, ld(0)+1))",
637         "isnan(1)",
638         "isnan(NAN)",
639         "floor(NAN)",
640         "floor(123.123)",
641         "floor(-123.123)",
642         "trunc(123.123)",
643         "trunc(-123.123)",
644         "ceil(123.123)",
645         "ceil(-123.123)",
646         "sqrt(1764)",
647         "sqrt(-1)",
648         "not(1)",
649         "not(NAN)",
650         "not(0)",
651         "pow(0,1.23)",
652         "pow(PI,1.23)",
653         "PI^1.23",
654         "pow(-1,1.23)",
655         NULL
656     };
657
658     for (expr = exprs; *expr; expr++) {
659         printf("Evaluating '%s'\n", *expr);
660         av_expr_parse_and_eval(&d, *expr,
661                                const_names, const_values,
662                                NULL, NULL, NULL, NULL, NULL, 0, NULL);
663         if(isnan(d)){
664             printf("'%s' -> nan\n\n", *expr);
665         }else{
666             printf("'%s' -> %f\n\n", *expr, d);
667         }
668     }
669
670     av_expr_parse_and_eval(&d, "1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)",
671                            const_names, const_values,
672                            NULL, NULL, NULL, NULL, NULL, 0, NULL);
673     printf("%f == 12.7\n", d);
674     av_expr_parse_and_eval(&d, "80G/80Gi",
675                            const_names, const_values,
676                            NULL, NULL, NULL, NULL, NULL, 0, NULL);
677     printf("%f == 0.931322575\n", d);
678
679     if (argc > 1 && !strcmp(argv[1], "-t")) {
680         for (i = 0; i < 1050; i++) {
681             START_TIMER;
682             av_expr_parse_and_eval(&d, "1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)",
683                                    const_names, const_values,
684                                    NULL, NULL, NULL, NULL, NULL, 0, NULL);
685             STOP_TIMER("av_expr_parse_and_eval");
686         }
687     }
688
689     return 0;
690 }
691 #endif