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