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