eval.c 24 KB
Newer Older
1
/*
2
 * Copyright (c) 2002-2006 Michael Niedermayer <michaelni@gmx.at>
3
 * Copyright (c) 2006 Oded Shimon <ods15@ods15.dyndns.org>
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * 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
 */

Michael Niedermayer's avatar
Michael Niedermayer committed
22
/**
23
 * @file
Michael Niedermayer's avatar
Michael Niedermayer committed
24 25
 * simple arithmetic expression evaluator.
 *
26 27 28
 * see http://joe.hotchkiss.com/programming/eval/eval.html
 */

29
#include <float.h>
30
#include "attributes.h"
31
#include "avutil.h"
32
#include "common.h"
33
#include "eval.h"
34
#include "ffmath.h"
35
#include "internal.h"
36
#include "log.h"
37
#include "mathematics.h"
38
#include "time.h"
39
#include "avstring.h"
40
#include "timer.h"
41
#include "reverse.h"
42

43
typedef struct Parser {
44
    const AVClass *class;
45 46
    int stack_index;
    char *s;
47 48 49 50 51 52
    const double *const_values;
    const char * const *const_names;          // NULL terminated
    double (* const *funcs1)(void *, double a);           // NULL terminated
    const char * const *func1_names;          // NULL terminated
    double (* const *funcs2)(void *, double a, double b); // NULL terminated
    const char * const *func2_names;          // NULL terminated
53
    void *opaque;
54 55
    int log_offset;
    void *log_ctx;
56
#define VARS 10
57
    double *var;
58 59
} Parser;

60
static const AVClass eval_class = { "Eval", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, offsetof(Parser,log_offset), offsetof(Parser,log_ctx) };
61

62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
static const struct {
    double bin_val;
    double dec_val;
    int8_t exp;
} si_prefixes['z' - 'E' + 1] = {
    ['y'-'E']= { 8.271806125530276749e-25, 1e-24, -24 },
    ['z'-'E']= { 8.4703294725430034e-22, 1e-21, -21 },
    ['a'-'E']= { 8.6736173798840355e-19, 1e-18, -18 },
    ['f'-'E']= { 8.8817841970012523e-16, 1e-15, -15 },
    ['p'-'E']= { 9.0949470177292824e-13, 1e-12, -12 },
    ['n'-'E']= { 9.3132257461547852e-10, 1e-9,  -9 },
    ['u'-'E']= { 9.5367431640625e-7, 1e-6, -6 },
    ['m'-'E']= { 9.765625e-4, 1e-3, -3 },
    ['c'-'E']= { 9.8431332023036951e-3, 1e-2, -2 },
    ['d'-'E']= { 9.921256574801246e-2, 1e-1, -1 },
    ['h'-'E']= { 1.0159366732596479e2, 1e2, 2 },
    ['k'-'E']= { 1.024e3, 1e3, 3 },
    ['K'-'E']= { 1.024e3, 1e3, 3 },
    ['M'-'E']= { 1.048576e6, 1e6, 6 },
    ['G'-'E']= { 1.073741824e9, 1e9, 9 },
    ['T'-'E']= { 1.099511627776e12, 1e12, 12 },
    ['P'-'E']= { 1.125899906842624e15, 1e15, 15 },
    ['E'-'E']= { 1.152921504606847e18, 1e18, 18 },
    ['Z'-'E']= { 1.1805916207174113e21, 1e21, 21 },
    ['Y'-'E']= { 1.2089258196146292e24, 1e24, 24 },
87 88
};

89 90 91 92 93 94 95
static const struct {
    const char *name;
    double value;
} constants[] = {
    { "E",   M_E   },
    { "PI",  M_PI  },
    { "PHI", M_PHI },
96
    { "QP2LAMBDA", FF_QP2LAMBDA },
97 98
};

99 100
double av_strtod(const char *numstr, char **tail)
{
101 102
    double d;
    char *next;
103
    if(numstr[0]=='0' && (numstr[1]|0x20)=='x') {
104
        d = strtoul(numstr, &next, 16);
105 106
    } else
        d = strtod(numstr, &next);
107
    /* if parsing succeeded, check for and interpret postfixes */
108
    if (next!=numstr) {
109 110
        if (next[0] == 'd' && next[1] == 'B') {
            /* treat dB as decibels instead of decibytes */
111
            d = ff_exp10(d / 20);
112 113
            next += 2;
        } else if (*next >= 'E' && *next <= 'z') {
114
            int e= si_prefixes[*next - 'E'].exp;
115 116
            if (e) {
                if (next[1] == 'i') {
117
                    d*= si_prefixes[*next - 'E'].bin_val;
118
                    next+=2;
119
                } else {
120
                    d*= si_prefixes[*next - 'E'].dec_val;
121 122 123 124 125
                    next++;
                }
            }
        }

126
        if (*next=='B') {
127
            d*=8;
128
            next++;
129 130 131 132 133 134 135 136 137
        }
    }
    /* if requested, fill in tail with the position after the last parsed
       character */
    if (tail)
        *tail = next;
    return d;
}

138 139
#define IS_IDENTIFIER_CHAR(c) ((c) - '0' <= 9U || (c) - 'a' <= 25U || (c) - 'A' <= 25U || (c) == '_')

140 141
static int strmatch(const char *s, const char *prefix)
{
142
    int i;
143 144
    for (i=0; prefix[i]; i++) {
        if (prefix[i] != s[i]) return 0;
145
    }
146 147
    /* return 1 only if the s identifier is terminated */
    return !IS_IDENTIFIER_CHAR(s[i]);
148 149
}

150
struct AVExpr {
151 152
    enum {
        e_value, e_const, e_func0, e_func1, e_func2,
153
        e_squish, e_gauss, e_ld, e_isnan, e_isinf,
154
        e_mod, e_max, e_min, e_eq, e_gt, e_gte, e_lte, e_lt,
155
        e_pow, e_mul, e_div, e_add,
156
        e_last, e_st, e_while, e_taylor, e_root, e_floor, e_ceil, e_trunc,
Michael Niedermayer's avatar
Michael Niedermayer committed
157
        e_sqrt, e_not, e_random, e_hypot, e_gcd,
158
        e_if, e_ifnot, e_print, e_bitand, e_bitor, e_between, e_clip
159 160 161 162 163 164 165 166
    } type;
    double value; // is sign in other types
    union {
        int const_index;
        double (*func0)(double);
        double (*func1)(void *, double);
        double (*func2)(void *, double, double);
    } a;
167
    struct AVExpr *param[3];
168
    double *var;
169 170
};

171 172 173 174 175
static double etime(double v)
{
    return av_gettime() * 0.000001;
}

176 177
static double eval_expr(Parser *p, AVExpr *e)
{
178 179
    switch (e->type) {
        case e_value:  return e->value;
180
        case e_const:  return e->value * p->const_values[e->a.const_index];
181 182 183 184 185
        case e_func0:  return e->value * e->a.func0(eval_expr(p, e->param[0]));
        case e_func1:  return e->value * e->a.func1(p->opaque, eval_expr(p, e->param[0]));
        case e_func2:  return e->value * e->a.func2(p->opaque, eval_expr(p, e->param[0]), eval_expr(p, e->param[1]));
        case e_squish: return 1/(1+exp(4*eval_expr(p, e->param[0])));
        case e_gauss: { double d = eval_expr(p, e->param[0]); return exp(-d*d/2)/sqrt(2*M_PI); }
186
        case e_ld:     return e->value * p->var[av_clip(eval_expr(p, e->param[0]), 0, VARS-1)];
187
        case e_isnan:  return e->value * !!isnan(eval_expr(p, e->param[0]));
188
        case e_isinf:  return e->value * !!isinf(eval_expr(p, e->param[0]));
189 190 191
        case e_floor:  return e->value * floor(eval_expr(p, e->param[0]));
        case e_ceil :  return e->value * ceil (eval_expr(p, e->param[0]));
        case e_trunc:  return e->value * trunc(eval_expr(p, e->param[0]));
192
        case e_sqrt:   return e->value * sqrt (eval_expr(p, e->param[0]));
193
        case e_not:    return e->value * (eval_expr(p, e->param[0]) == 0);
194 195 196 197
        case e_if:     return e->value * (eval_expr(p, e->param[0]) ? eval_expr(p, e->param[1]) :
                                          e->param[2] ? eval_expr(p, e->param[2]) : 0);
        case e_ifnot:  return e->value * (!eval_expr(p, e->param[0]) ? eval_expr(p, e->param[1]) :
                                          e->param[2] ? eval_expr(p, e->param[2]) : 0);
198 199 200 201 202 203 204
        case e_clip: {
            double x = eval_expr(p, e->param[0]);
            double min = eval_expr(p, e->param[1]), max = eval_expr(p, e->param[2]);
            if (isnan(min) || isnan(max) || isnan(x) || min > max)
                return NAN;
            return e->value * av_clipd(eval_expr(p, e->param[0]), min, max);
        }
205 206 207 208 209
        case e_between: {
            double d = eval_expr(p, e->param[0]);
            return e->value * (d >= eval_expr(p, e->param[1]) &&
                               d <= eval_expr(p, e->param[2]));
        }
210 211 212 213 214 215
        case e_print: {
            double x = eval_expr(p, e->param[0]);
            int level = e->param[1] ? av_clip(eval_expr(p, e->param[1]), INT_MIN, INT_MAX) : AV_LOG_INFO;
            av_log(p, level, "%f\n", x);
            return x;
        }
Michael Niedermayer's avatar
Michael Niedermayer committed
216 217 218 219 220 221 222
        case e_random:{
            int idx= av_clip(eval_expr(p, e->param[0]), 0, VARS-1);
            uint64_t r= isnan(p->var[idx]) ? 0 : p->var[idx];
            r= r*1664525+1013904223;
            p->var[idx]= r;
            return e->value * (r * (1.0/UINT64_MAX));
        }
223
        case e_while: {
224
            double d = NAN;
225
            while (eval_expr(p, e->param[0]))
226 227 228
                d=eval_expr(p, e->param[1]);
            return d;
        }
229 230 231
        case e_taylor: {
            double t = 1, d = 0, v;
            double x = eval_expr(p, e->param[1]);
232
            int id = e->param[2] ? av_clip(eval_expr(p, e->param[2]), 0, VARS-1) : 0;
233
            int i;
234
            double var0 = p->var[id];
235 236
            for(i=0; i<1000; i++) {
                double ld = d;
237
                p->var[id] = i;
238 239 240 241 242 243
                v = eval_expr(p, e->param[0]);
                d += t*v;
                if(ld==d && v)
                    break;
                t *= x / (i+1);
            }
244
            p->var[id] = var0;
245 246
            return d;
        }
247
        case e_root: {
248
            int i, j;
249 250 251 252 253
            double low = -1, high = -1, v, low_v = -DBL_MAX, high_v = DBL_MAX;
            double var0 = p->var[0];
            double x_max = eval_expr(p, e->param[1]);
            for(i=-1; i<1024; i++) {
                if(i<255) {
254
                    p->var[0] = ff_reverse[i&255]*x_max/255;
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
                } else {
                    p->var[0] = x_max*pow(0.9, i-255);
                    if (i&1) p->var[0] *= -1;
                    if (i&2) p->var[0] += low;
                    else     p->var[0] += high;
                }
                v = eval_expr(p, e->param[0]);
                if (v<=0 && v>low_v) {
                    low    = p->var[0];
                    low_v  = v;
                }
                if (v>=0 && v<high_v) {
                    high   = p->var[0];
                    high_v = v;
                }
                if (low>=0 && high>=0){
271
                    for (j=0; j<1000; j++) {
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288
                        p->var[0] = (low+high)*0.5;
                        if (low == p->var[0] || high == p->var[0])
                            break;
                        v = eval_expr(p, e->param[0]);
                        if (v<=0) low = p->var[0];
                        if (v>=0) high= p->var[0];
                        if (isnan(v)) {
                            low = high = v;
                            break;
                        }
                    }
                    break;
                }
            }
            p->var[0] = var0;
            return -low_v<high_v ? low : high;
        }
289 290 291 292
        default: {
            double d = eval_expr(p, e->param[0]);
            double d2 = eval_expr(p, e->param[1]);
            switch (e->type) {
293
                case e_mod: return e->value * (d - floor((!CONFIG_FTRAPV || d2) ? d / d2 : d * INFINITY) * d2);
Michael Niedermayer's avatar
Michael Niedermayer committed
294
                case e_gcd: return e->value * av_gcd(d,d2);
295 296 297 298 299
                case e_max: return e->value * (d >  d2 ?   d : d2);
                case e_min: return e->value * (d <  d2 ?   d : d2);
                case e_eq:  return e->value * (d == d2 ? 1.0 : 0.0);
                case e_gt:  return e->value * (d >  d2 ? 1.0 : 0.0);
                case e_gte: return e->value * (d >= d2 ? 1.0 : 0.0);
300 301
                case e_lt:  return e->value * (d <  d2 ? 1.0 : 0.0);
                case e_lte: return e->value * (d <= d2 ? 1.0 : 0.0);
302 303
                case e_pow: return e->value * pow(d, d2);
                case e_mul: return e->value * (d * d2);
304
                case e_div: return e->value * ((!CONFIG_FTRAPV || d2 ) ? (d / d2) : d * INFINITY);
305
                case e_add: return e->value * (d + d2);
Oded Shimon's avatar
Oded Shimon committed
306
                case e_last:return e->value * d2;
307
                case e_st : return e->value * (p->var[av_clip(d, 0, VARS-1)]= d2);
308
                case e_hypot:return e->value * hypot(d, d2);
309 310
                case e_bitand: return isnan(d) || isnan(d2) ? NAN : e->value * ((long int)d & (long int)d2);
                case e_bitor:  return isnan(d) || isnan(d2) ? NAN : e->value * ((long int)d | (long int)d2);
311 312 313 314 315 316
            }
        }
    }
    return NAN;
}

317
static int parse_expr(AVExpr **e, Parser *p);
318

319
void av_expr_free(AVExpr *e)
320
{
321
    if (!e) return;
322 323
    av_expr_free(e->param[0]);
    av_expr_free(e->param[1]);
324
    av_expr_free(e->param[2]);
325
    av_freep(&e->var);
326 327 328
    av_freep(&e);
}

329 330
static int parse_primary(AVExpr **e, Parser *p)
{
331
    AVExpr *d = av_mallocz(sizeof(AVExpr));
332
    char *next = p->s, *s0 = p->s;
333
    int ret, i;
334

335
    if (!d)
336
        return AVERROR(ENOMEM);
337

338
    /* number */
339
    d->value = av_strtod(p->s, &next);
340
    if (next != p->s) {
341
        d->type = e_value;
342
        p->s= next;
343 344
        *e = d;
        return 0;
345
    }
346
    d->value = 1;
347

348
    /* named constants */
349 350
    for (i=0; p->const_names && p->const_names[i]; i++) {
        if (strmatch(p->s, p->const_names[i])) {
351
            p->s+= strlen(p->const_names[i]);
352 353
            d->type = e_const;
            d->a.const_index = i;
354 355
            *e = d;
            return 0;
356 357
        }
    }
358 359 360 361 362 363 364 365 366
    for (i = 0; i < FF_ARRAY_ELEMS(constants); i++) {
        if (strmatch(p->s, constants[i].name)) {
            p->s += strlen(constants[i].name);
            d->type = e_value;
            d->value = constants[i].value;
            *e = d;
            return 0;
        }
    }
367

368
    p->s= strchr(p->s, '(');
369
    if (!p->s) {
370
        av_log(p, AV_LOG_ERROR, "Undefined constant or missing '(' in '%s'\n", s0);
Michael Niedermayer's avatar
Michael Niedermayer committed
371
        p->s= next;
372
        av_expr_free(d);
373
        return AVERROR(EINVAL);
374 375
    }
    p->s++; // "("
376 377
    if (*next == '(') { // special case do-nothing
        av_freep(&d);
378 379
        if ((ret = parse_expr(&d, p)) < 0)
            return ret;
380
        if (p->s[0] != ')') {
381
            av_log(p, AV_LOG_ERROR, "Missing ')' in '%s'\n", s0);
382
            av_expr_free(d);
383
            return AVERROR(EINVAL);
384 385
        }
        p->s++; // ")"
386 387 388 389
        *e = d;
        return 0;
    }
    if ((ret = parse_expr(&(d->param[0]), p)) < 0) {
390
        av_expr_free(d);
391
        return ret;
392
    }
393
    if (p->s[0]== ',') {
394
        p->s++; // ","
395
        parse_expr(&d->param[1], p);
396
    }
397 398 399 400
    if (p->s[0]== ',') {
        p->s++; // ","
        parse_expr(&d->param[2], p);
    }
401
    if (p->s[0] != ')') {
402
        av_log(p, AV_LOG_ERROR, "Missing ')' or too many args in '%s'\n", s0);
403
        av_expr_free(d);
404
        return AVERROR(EINVAL);
405 406
    }
    p->s++; // ")"
407

408
    d->type = e_func0;
409 410 411 412 413 414 415 416 417 418 419 420
         if (strmatch(next, "sinh"  )) d->a.func0 = sinh;
    else if (strmatch(next, "cosh"  )) d->a.func0 = cosh;
    else if (strmatch(next, "tanh"  )) d->a.func0 = tanh;
    else if (strmatch(next, "sin"   )) d->a.func0 = sin;
    else if (strmatch(next, "cos"   )) d->a.func0 = cos;
    else if (strmatch(next, "tan"   )) d->a.func0 = tan;
    else if (strmatch(next, "atan"  )) d->a.func0 = atan;
    else if (strmatch(next, "asin"  )) d->a.func0 = asin;
    else if (strmatch(next, "acos"  )) d->a.func0 = acos;
    else if (strmatch(next, "exp"   )) d->a.func0 = exp;
    else if (strmatch(next, "log"   )) d->a.func0 = log;
    else if (strmatch(next, "abs"   )) d->a.func0 = fabs;
421
    else if (strmatch(next, "time"  )) d->a.func0 = etime;
422 423 424 425 426 427 428 429
    else if (strmatch(next, "squish")) d->type = e_squish;
    else if (strmatch(next, "gauss" )) d->type = e_gauss;
    else if (strmatch(next, "mod"   )) d->type = e_mod;
    else if (strmatch(next, "max"   )) d->type = e_max;
    else if (strmatch(next, "min"   )) d->type = e_min;
    else if (strmatch(next, "eq"    )) d->type = e_eq;
    else if (strmatch(next, "gte"   )) d->type = e_gte;
    else if (strmatch(next, "gt"    )) d->type = e_gt;
430 431
    else if (strmatch(next, "lte"   )) d->type = e_lte;
    else if (strmatch(next, "lt"    )) d->type = e_lt;
432
    else if (strmatch(next, "ld"    )) d->type = e_ld;
433
    else if (strmatch(next, "isnan" )) d->type = e_isnan;
434
    else if (strmatch(next, "isinf" )) d->type = e_isinf;
435 436
    else if (strmatch(next, "st"    )) d->type = e_st;
    else if (strmatch(next, "while" )) d->type = e_while;
437
    else if (strmatch(next, "taylor")) d->type = e_taylor;
438
    else if (strmatch(next, "root"  )) d->type = e_root;
439 440 441
    else if (strmatch(next, "floor" )) d->type = e_floor;
    else if (strmatch(next, "ceil"  )) d->type = e_ceil;
    else if (strmatch(next, "trunc" )) d->type = e_trunc;
442
    else if (strmatch(next, "sqrt"  )) d->type = e_sqrt;
443
    else if (strmatch(next, "not"   )) d->type = e_not;
444
    else if (strmatch(next, "pow"   )) d->type = e_pow;
445
    else if (strmatch(next, "print" )) d->type = e_print;
Michael Niedermayer's avatar
Michael Niedermayer committed
446
    else if (strmatch(next, "random")) d->type = e_random;
Michael Niedermayer's avatar
Michael Niedermayer committed
447
    else if (strmatch(next, "hypot" )) d->type = e_hypot;
Michael Niedermayer's avatar
Michael Niedermayer committed
448
    else if (strmatch(next, "gcd"   )) d->type = e_gcd;
449 450
    else if (strmatch(next, "if"    )) d->type = e_if;
    else if (strmatch(next, "ifnot" )) d->type = e_ifnot;
451 452
    else if (strmatch(next, "bitand")) d->type = e_bitand;
    else if (strmatch(next, "bitor" )) d->type = e_bitor;
453
    else if (strmatch(next, "between"))d->type = e_between;
454
    else if (strmatch(next, "clip"  )) d->type = e_clip;
455
    else {
456 457
        for (i=0; p->func1_names && p->func1_names[i]; i++) {
            if (strmatch(next, p->func1_names[i])) {
458
                d->a.func1 = p->funcs1[i];
459
                d->type = e_func1;
460 461
                *e = d;
                return 0;
462 463 464
            }
        }

465 466
        for (i=0; p->func2_names && p->func2_names[i]; i++) {
            if (strmatch(next, p->func2_names[i])) {
467
                d->a.func2 = p->funcs2[i];
468
                d->type = e_func2;
469 470
                *e = d;
                return 0;
471 472 473
            }
        }

474
        av_log(p, AV_LOG_ERROR, "Unknown function in '%s'\n", s0);
475
        av_expr_free(d);
476
        return AVERROR(EINVAL);
477
    }
478

479 480
    *e = d;
    return 0;
481
}
Michael Niedermayer's avatar
Michael Niedermayer committed
482

483
static AVExpr *make_eval_expr(int type, int value, AVExpr *p0, AVExpr *p1)
484 485
{
    AVExpr *e = av_mallocz(sizeof(AVExpr));
486 487
    if (!e)
        return NULL;
488 489 490 491 492 493 494
    e->type     =type   ;
    e->value    =value  ;
    e->param[0] =p0     ;
    e->param[1] =p1     ;
    return e;
}

495 496
static int parse_pow(AVExpr **e, Parser *p, int *sign)
{
497 498
    *sign= (*p->s == '+') - (*p->s == '-');
    p->s += *sign&1;
499
    return parse_primary(e, p);
500 501
}

502 503 504 505 506 507
static int parse_dB(AVExpr **e, Parser *p, int *sign)
{
    /* do not filter out the negative sign when parsing a dB value.
       for example, -3dB is not the same as -(3dB) */
    if (*p->s == '-') {
        char *next;
508
        double av_unused ignored = strtod(p->s, &next);
509 510 511 512 513 514 515 516
        if (next != p->s && next[0] == 'd' && next[1] == 'B') {
            *sign = 0;
            return parse_primary(e, p);
        }
    }
    return parse_pow(e, p, sign);
}

517 518 519 520
static int parse_factor(AVExpr **e, Parser *p)
{
    int sign, sign2, ret;
    AVExpr *e0, *e1, *e2;
521
    if ((ret = parse_dB(&e0, p, &sign)) < 0)
522
        return ret;
523
    while(p->s[0]=='^'){
524
        e1 = e0;
525
        p->s++;
526
        if ((ret = parse_dB(&e2, p, &sign2)) < 0) {
527
            av_expr_free(e1);
528 529
            return ret;
        }
530
        e0 = make_eval_expr(e_pow, 1, e1, e2);
531
        if (!e0) {
532 533
            av_expr_free(e1);
            av_expr_free(e2);
534 535 536
            return AVERROR(ENOMEM);
        }
        if (e0->param[1]) e0->param[1]->value *= (sign2|1);
537
    }
538 539 540 541
    if (e0) e0->value *= (sign|1);

    *e = e0;
    return 0;
542 543
}

544 545 546 547 548 549
static int parse_term(AVExpr **e, Parser *p)
{
    int ret;
    AVExpr *e0, *e1, *e2;
    if ((ret = parse_factor(&e0, p)) < 0)
        return ret;
550
    while (p->s[0]=='*' || p->s[0]=='/') {
551
        int c= *p->s++;
552 553
        e1 = e0;
        if ((ret = parse_factor(&e2, p)) < 0) {
554
            av_expr_free(e1);
555 556
            return ret;
        }
557
        e0 = make_eval_expr(c == '*' ? e_mul : e_div, 1, e1, e2);
558
        if (!e0) {
559 560
            av_expr_free(e1);
            av_expr_free(e2);
561 562
            return AVERROR(ENOMEM);
        }
563
    }
564 565
    *e = e0;
    return 0;
566 567
}

568 569 570 571 572 573
static int parse_subexpr(AVExpr **e, Parser *p)
{
    int ret;
    AVExpr *e0, *e1, *e2;
    if ((ret = parse_term(&e0, p)) < 0)
        return ret;
574
    while (*p->s == '+' || *p->s == '-') {
575 576
        e1 = e0;
        if ((ret = parse_term(&e2, p)) < 0) {
577
            av_expr_free(e1);
578 579
            return ret;
        }
580
        e0 = make_eval_expr(e_add, 1, e1, e2);
581
        if (!e0) {
582 583
            av_expr_free(e1);
            av_expr_free(e2);
584 585
            return AVERROR(ENOMEM);
        }
586 587
    };

588 589
    *e = e0;
    return 0;
590 591
}

592 593 594 595
static int parse_expr(AVExpr **e, Parser *p)
{
    int ret;
    AVExpr *e0, *e1, *e2;
596
    if (p->stack_index <= 0) //protect against stack overflows
597
        return AVERROR(EINVAL);
Michael Niedermayer's avatar
Michael Niedermayer committed
598 599
    p->stack_index--;

600 601
    if ((ret = parse_subexpr(&e0, p)) < 0)
        return ret;
602
    while (*p->s == ';') {
603
        p->s++;
604 605
        e1 = e0;
        if ((ret = parse_subexpr(&e2, p)) < 0) {
606
            av_expr_free(e1);
607 608
            return ret;
        }
609
        e0 = make_eval_expr(e_last, 1, e1, e2);
610
        if (!e0) {
611 612
            av_expr_free(e1);
            av_expr_free(e2);
613 614
            return AVERROR(ENOMEM);
        }
615
    };
Michael Niedermayer's avatar
Michael Niedermayer committed
616 617

    p->stack_index++;
618 619
    *e = e0;
    return 0;
620 621
}

622 623
static int verify_expr(AVExpr *e)
{
624 625 626 627 628 629 630
    if (!e) return 0;
    switch (e->type) {
        case e_value:
        case e_const: return 1;
        case e_func0:
        case e_func1:
        case e_squish:
631
        case e_ld:
632
        case e_gauss:
633
        case e_isnan:
634
        case e_isinf:
635 636 637
        case e_floor:
        case e_ceil:
        case e_trunc:
638
        case e_sqrt:
639
        case e_not:
Michael Niedermayer's avatar
Michael Niedermayer committed
640
        case e_random:
641
            return verify_expr(e->param[0]) && !e->param[1];
642 643 644
        case e_print:
            return verify_expr(e->param[0])
                   && (!e->param[1] || verify_expr(e->param[1]));
645 646
        case e_if:
        case e_ifnot:
647 648 649
        case e_taylor:
            return verify_expr(e->param[0]) && verify_expr(e->param[1])
                   && (!e->param[2] || verify_expr(e->param[2]));
650
        case e_between:
651
        case e_clip:
652 653 654
            return verify_expr(e->param[0]) &&
                   verify_expr(e->param[1]) &&
                   verify_expr(e->param[2]);
655
        default: return verify_expr(e->param[0]) && verify_expr(e->param[1]) && !e->param[2];
656 657 658
    }
}

659
int av_expr_parse(AVExpr **expr, const char *s,
660 661 662
                  const char * const *const_names,
                  const char * const *func1_names, double (* const *funcs1)(void *, double),
                  const char * const *func2_names, double (* const *funcs2)(void *, double, double),
663
                  int log_offset, void *log_ctx)
664
{
665
    Parser p = { 0 };
666
    AVExpr *e = NULL;
667 668
    char *w = av_malloc(strlen(s) + 1);
    char *wp = w;
669
    const char *s0 = s;
670
    int ret = 0;
671 672

    if (!w)
673
        return AVERROR(ENOMEM);
674 675

    while (*s)
676
        if (!av_isspace(*s++)) *wp++ = s[-1];
677
    *wp++ = 0;
678

679
    p.class      = &eval_class;
Michael Niedermayer's avatar
Michael Niedermayer committed
680
    p.stack_index=100;
681
    p.s= w;
682 683 684 685 686
    p.const_names = const_names;
    p.funcs1      = funcs1;
    p.func1_names = func1_names;
    p.funcs2      = funcs2;
    p.func2_names = func2_names;
687 688
    p.log_offset = log_offset;
    p.log_ctx    = log_ctx;
689

690 691
    if ((ret = parse_expr(&e, &p)) < 0)
        goto end;
692 693 694 695 696
    if (*p.s) {
        av_log(&p, AV_LOG_ERROR, "Invalid chars '%s' at the end of expression '%s'\n", p.s, s0);
        ret = AVERROR(EINVAL);
        goto end;
    }
697
    if (!verify_expr(e)) {
698 699
        ret = AVERROR(EINVAL);
        goto end;
700
    }
701
    e->var= av_mallocz(sizeof(double) *VARS);
702 703 704 705
    if (!e->var) {
        ret = AVERROR(ENOMEM);
        goto end;
    }
706
    *expr = e;
707
    e = NULL;
708
end:
709
    av_expr_free(e);
710
    av_free(w);
711
    return ret;
712 713
}

714
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
715
{
716
    Parser p = { 0 };
717
    p.var= e->var;
718

719
    p.const_values = const_values;
720 721 722 723
    p.opaque     = opaque;
    return eval_expr(&p, e);
}

724
int av_expr_parse_and_eval(double *d, const char *s,
725 726 727
                           const char * const *const_names, const double *const_values,
                           const char * const *func1_names, double (* const *funcs1)(void *, double),
                           const char * const *func2_names, double (* const *funcs2)(void *, double, double),
728
                           void *opaque, int log_offset, void *log_ctx)
729
{
730
    AVExpr *e = NULL;
731
    int ret = av_expr_parse(&e, s, const_names, func1_names, funcs1, func2_names, funcs2, log_offset, log_ctx);
732 733 734 735 736

    if (ret < 0) {
        *d = NAN;
        return ret;
    }
737 738
    *d = av_expr_eval(e, const_values, opaque);
    av_expr_free(e);
739
    return isnan(*d) ? AVERROR(EINVAL) : 0;
740
}