47 double (*
const *
funcs1)(
void *,
double a);
49 double (*
const *
funcs2)(
void *,
double a,
double b);
97 if(numstr[0]==
'0' && (numstr[1]|0x20)==
'x') {
98 d = strtoul(numstr, &next, 16);
100 d =
strtod(numstr, &next);
103 if (next[0] ==
'd' && next[1] ==
'B') {
107 }
else if (*next >=
'E' && *next <=
'z') {
110 if (next[1] ==
'i') {
132 #define IS_IDENTIFIER_CHAR(c) ((c) - '0' <= 9U || (c) - 'a' <= 25U || (c) - 'A' <= 25U || (c) == '_')
137 for (i=0; prefix[i]; i++) {
138 if (prefix[i] != s[i])
return 0;
159 double (*
func2)(
void *, double, double);
207 av_log(p, level,
"%f\n", x);
213 r= r*1664525+1013904223;
215 return e->
value * (r * (1.0/UINT64_MAX));
224 double t = 1, d = 0,
v;
228 double var0 = p->
var[
id];
229 for(i=0; i<1000; i++) {
243 double low = -1, high = -1,
v, low_v = -DBL_MAX, high_v = DBL_MAX;
244 double var0 = p->
var[0];
246 for(i=-1; i<1024; i++) {
250 p->
var[0] = x_max*pow(0.9, i-255);
251 if (i&1) p->
var[0] *= -1;
252 if (i&2) p->
var[0] += low;
253 else p->
var[0] += high;
256 if (v<=0 && v>low_v) {
260 if (
v>=0 &&
v<high_v) {
264 if (low>=0 && high>=0){
265 for (j=0; j<1000; j++) {
266 p->
var[0] = (low+high)*0.5;
267 if (low == p->
var[0] || high == p->
var[0])
270 if (
v<=0) low = p->
var[0];
271 if (
v>=0) high= p->
var[0];
281 return -low_v<high_v ? low : high;
287 case e_mod:
return e->
value * (d - floor((!CONFIG_FTRAPV || d2) ? d / d2 : d *
INFINITY) * d2);
289 case e_max:
return e->
value * (d > d2 ? d : d2);
290 case e_min:
return e->
value * (d < d2 ? d : d2);
291 case e_eq:
return e->
value * (d == d2 ? 1.0 : 0.0);
292 case e_gt:
return e->
value * (d > d2 ? 1.0 : 0.0);
293 case e_gte:
return e->
value * (d >= d2 ? 1.0 : 0.0);
294 case e_lt:
return e->
value * (d < d2 ? 1.0 : 0.0);
295 case e_lte:
return e->
value * (d <= d2 ? 1.0 : 0.0);
326 char *next = p->
s, *
s0 = p->
s;
362 p->
s= strchr(p->
s,
'(');
374 if (p->
s[0] !=
')') {
395 if (p->
s[0] !=
')') {
491 *sign= (*p->
s ==
'+') - (*p->
s ==
'-');
503 if (next != p->
s && next[0] ==
'd' && next[1] ==
'B') {
513 int sign, sign2, ret;
515 if ((ret =
parse_dB(&e0, p, &sign)) < 0)
520 if ((ret =
parse_dB(&e2, p, &sign2)) < 0) {
532 if (e0) e0->
value *= (sign|1);
544 while (p->
s[0]==
'*' || p->
s[0]==
'/') {
568 while (*p->
s ==
'+' || *p->
s ==
'-') {
596 while (*p->
s ==
';') {
654 const char *
const *const_names,
656 const char *
const *func2_names,
double (*
const *funcs2)(
void *,
double,
double),
657 int log_offset,
void *log_ctx)
719 const char *
const *const_names,
const double *const_values,
720 const char *
const *func1_names,
double (*
const *
funcs1)(
void *,
double),
721 const char *
const *func2_names,
double (*
const *funcs2)(
void *,
double,
double),
722 void *opaque,
int log_offset,
void *log_ctx)
725 int ret =
av_expr_parse(&e, s, const_names, func1_names,
funcs1, func2_names, funcs2, log_offset, log_ctx);
739 static const double const_values[] = {
745 static const char *
const const_names[] = {
751 int main(
int argc,
char **argv)
755 const char *
const *expr;
756 static const char *
const exprs[] = {
762 "1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)",
783 "bar + PI + E + 100f*2 + foo",
784 "13k + 12f - foo(1, 2)",
798 "st(0, 1); while(lte(ld(0), 100), st(1, ld(1)+ld(0));st(0, ld(0)+1)); ld(1)",
800 "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)",
802 "st(0, 1); while(lte(ld(0),100), st(1, ld(1)+ld(0)); st(0, ld(0)+1))",
831 "ifnot(1, NaN) + if(0, 1)",
835 "taylor(eq(mod(ld(1),4),1)-eq(mod(ld(1),4),3), PI/2, 1)",
836 "root(sin(ld(0))-1, 2)",
837 "root(sin(ld(0))+6+sin(ld(0)/12)-log(ld(0)), 100)",
838 "7000000B*random(0)",
842 "gcd(30,55)*print(min(9,1))",
846 "between(10, -3, 10)",
847 "between(-4, -2, -1)",
855 for (expr = exprs; *expr; expr++) {
856 printf(
"Evaluating '%s'\n", *expr);
858 const_names, const_values,
861 printf(
"'%s' -> nan\n\n", *expr);
863 printf(
"'%s' -> %f\n\n", *expr, d);
867 const_names, const_values,
869 printf(
"%f == 12.7\n", d);
871 const_names, const_values,
873 printf(
"%f == 0.931322575\n", d);
875 if (argc > 1 && !strcmp(argv[1],
"-t")) {
876 for (i = 0; i < 1050; i++) {
879 const_names, const_values,
static int verify_expr(AVExpr *e)
const char *const * func1_names
static const char *const func1_names[]
#define LIBAVUTIL_VERSION_INT
int av_expr_parse(AVExpr **expr, const char *s, 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), int log_offset, void *log_ctx)
Parse an expression.
Macro definitions for various function/variable attributes.
static int parse_dB(AVExpr **e, Parser *p, int *sign)
int av_isspace(int c)
Locale-independent conversion of ASCII isspace.
static av_always_inline av_const int isnan(float x)
static av_cold int end(AVCodecContext *avctx)
static int parse_expr(AVExpr **e, Parser *p)
static double(*const funcs1[])(void *, double)
double strtod(const char *, char **)
const char *const * const_names
double(* func1)(void *, double)
static int parse_pow(AVExpr **e, Parser *p, int *sign)
static int parse_factor(AVExpr **e, Parser *p)
high precision timer, useful to profile code
static int parse_subexpr(AVExpr **e, Parser *p)
double(* func2)(void *, double, double)
int av_expr_parse_and_eval(double *d, const char *s, 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), void *opaque, int log_offset, void *log_ctx)
Parse and evaluate an expression.
const double * const_values
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define IS_IDENTIFIER_CHAR(c)
const uint8_t ff_reverse[256]
static int parse_term(AVExpr **e, Parser *p)
int64_t av_gcd(int64_t a, int64_t b)
Return the greatest common divisor of a and b.
common internal API header
static const struct @187 constants[]
static double etime(double v)
static const int8_t si_prefixes['z'- 'E'+1]
GLsizei GLboolean const GLfloat * value
static av_always_inline av_const double trunc(double x)
static int strmatch(const char *s, const char *prefix)
static int parse_primary(AVExpr **e, Parser *p)
#define FF_ARRAY_ELEMS(a)
int64_t av_gettime(void)
Get the current time in microseconds.
double av_strtod(const char *numstr, char **tail)
Parse the string in numstr and return its value as a double.
#define AV_LOG_INFO
Standard information.
static double eval_expr(Parser *p, AVExpr *e)
void av_expr_free(AVExpr *e)
Free a parsed expression previously created with av_expr_parse().
Describe the class of an AVClass context structure.
static const AVClass eval_class
double(*const funcs1)(void *, double a)
const char *const * func2_names
common internal and external API header
double(*const funcs2)(void *, double a, double b)
double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
Evaluate a previously parsed expression.
#define FF_QP2LAMBDA
factor to convert from H.263 QP to lambda
static AVExpr * make_eval_expr(int type, int value, AVExpr *p0, AVExpr *p1)
static av_always_inline av_const int isinf(float x)
int main(int argc, char **argv)
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
simple arithmetic expression evaluator