eval.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821
  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. * @file
  23. * simple arithmetic expression evaluator.
  24. *
  25. * see http://joe.hotchkiss.com/programming/eval/eval.html
  26. */
  27. #include <float.h>
  28. #include "attributes.h"
  29. #include "avutil.h"
  30. #include "common.h"
  31. #include "eval.h"
  32. #include "ffmath.h"
  33. #include "log.h"
  34. #include "mathematics.h"
  35. #include "mem.h"
  36. #include "sfc64.h"
  37. #include "time.h"
  38. #include "avstring.h"
  39. #include "reverse.h"
  40. typedef struct Parser {
  41. const AVClass *class;
  42. int stack_index;
  43. char *s;
  44. const double *const_values;
  45. const char * const *const_names; // NULL terminated
  46. double (* const *funcs1)(void *, double a); // NULL terminated
  47. const char * const *func1_names; // NULL terminated
  48. double (* const *funcs2)(void *, double a, double b); // NULL terminated
  49. const char * const *func2_names; // NULL terminated
  50. void *opaque;
  51. int log_offset;
  52. void *log_ctx;
  53. #define VARS 10
  54. double *var;
  55. FFSFC64 *prng_state;
  56. } Parser;
  57. static const AVClass eval_class = {
  58. .class_name = "Eval",
  59. .item_name = av_default_item_name,
  60. .option = NULL,
  61. .version = LIBAVUTIL_VERSION_INT,
  62. .log_level_offset_offset = offsetof(Parser, log_offset),
  63. .parent_log_context_offset = offsetof(Parser, log_ctx),
  64. };
  65. static const struct {
  66. double bin_val;
  67. double dec_val;
  68. int8_t exp;
  69. } si_prefixes['z' - 'E' + 1] = {
  70. ['y'-'E']= { 8.271806125530276749e-25, 1e-24, -24 },
  71. ['z'-'E']= { 8.4703294725430034e-22, 1e-21, -21 },
  72. ['a'-'E']= { 8.6736173798840355e-19, 1e-18, -18 },
  73. ['f'-'E']= { 8.8817841970012523e-16, 1e-15, -15 },
  74. ['p'-'E']= { 9.0949470177292824e-13, 1e-12, -12 },
  75. ['n'-'E']= { 9.3132257461547852e-10, 1e-9, -9 },
  76. ['u'-'E']= { 9.5367431640625e-7, 1e-6, -6 },
  77. ['m'-'E']= { 9.765625e-4, 1e-3, -3 },
  78. ['c'-'E']= { 9.8431332023036951e-3, 1e-2, -2 },
  79. ['d'-'E']= { 9.921256574801246e-2, 1e-1, -1 },
  80. ['h'-'E']= { 1.0159366732596479e2, 1e2, 2 },
  81. ['k'-'E']= { 1.024e3, 1e3, 3 },
  82. ['K'-'E']= { 1.024e3, 1e3, 3 },
  83. ['M'-'E']= { 1.048576e6, 1e6, 6 },
  84. ['G'-'E']= { 1.073741824e9, 1e9, 9 },
  85. ['T'-'E']= { 1.099511627776e12, 1e12, 12 },
  86. ['P'-'E']= { 1.125899906842624e15, 1e15, 15 },
  87. ['E'-'E']= { 1.152921504606847e18, 1e18, 18 },
  88. ['Z'-'E']= { 1.1805916207174113e21, 1e21, 21 },
  89. ['Y'-'E']= { 1.2089258196146292e24, 1e24, 24 },
  90. };
  91. static const struct {
  92. const char *name;
  93. double value;
  94. } constants[] = {
  95. { "E", M_E },
  96. { "PI", M_PI },
  97. { "PHI", M_PHI },
  98. { "QP2LAMBDA", FF_QP2LAMBDA },
  99. };
  100. double av_strtod(const char *numstr, char **tail)
  101. {
  102. double d;
  103. char *next;
  104. if(numstr[0]=='0' && (numstr[1]|0x20)=='x') {
  105. d = strtoul(numstr, &next, 16);
  106. } else
  107. d = strtod(numstr, &next);
  108. /* if parsing succeeded, check for and interpret postfixes */
  109. if (next!=numstr) {
  110. if (next[0] == 'd' && next[1] == 'B') {
  111. /* treat dB as decibels instead of decibytes */
  112. d = ff_exp10(d / 20);
  113. next += 2;
  114. } else if (*next >= 'E' && *next <= 'z') {
  115. int e= si_prefixes[*next - 'E'].exp;
  116. if (e) {
  117. if (next[1] == 'i') {
  118. d*= si_prefixes[*next - 'E'].bin_val;
  119. next+=2;
  120. } else {
  121. d*= si_prefixes[*next - 'E'].dec_val;
  122. next++;
  123. }
  124. }
  125. }
  126. if (*next=='B') {
  127. d*=8;
  128. next++;
  129. }
  130. }
  131. /* if requested, fill in tail with the position after the last parsed
  132. character */
  133. if (tail)
  134. *tail = next;
  135. return d;
  136. }
  137. #define IS_IDENTIFIER_CHAR(c) ((c) - '0' <= 9U || (c) - 'a' <= 25U || (c) - 'A' <= 25U || (c) == '_')
  138. static int strmatch(const char *s, const char *prefix)
  139. {
  140. int i;
  141. for (i=0; prefix[i]; i++) {
  142. if (prefix[i] != s[i]) return 0;
  143. }
  144. /* return 1 only if the s identifier is terminated */
  145. return !IS_IDENTIFIER_CHAR(s[i]);
  146. }
  147. struct AVExpr {
  148. enum {
  149. e_value, e_const, e_func0, e_func1, e_func2,
  150. e_squish, e_gauss, e_ld, e_isnan, e_isinf,
  151. e_mod, e_max, e_min, e_eq, e_gt, e_gte, e_lte, e_lt,
  152. e_pow, e_mul, e_div, e_add,
  153. e_last, e_st, e_while, e_taylor, e_root, e_floor, e_ceil, e_trunc, e_round,
  154. e_sqrt, e_not, e_random, e_hypot, e_gcd,
  155. e_if, e_ifnot, e_print, e_bitand, e_bitor, e_between, e_clip, e_atan2, e_lerp,
  156. e_sgn, e_randomi
  157. } type;
  158. double value; // is sign in other types
  159. int const_index;
  160. union {
  161. double (*func0)(double);
  162. double (*func1)(void *, double);
  163. double (*func2)(void *, double, double);
  164. } a;
  165. struct AVExpr *param[3];
  166. double *var;
  167. FFSFC64 *prng_state;
  168. };
  169. static double etime(double v)
  170. {
  171. return av_gettime() * 0.000001;
  172. }
  173. static double eval_expr(Parser *p, AVExpr *e)
  174. {
  175. switch (e->type) {
  176. case e_value: return e->value;
  177. case e_const: return e->value * p->const_values[e->const_index];
  178. case e_func0: return e->value * e->a.func0(eval_expr(p, e->param[0]));
  179. case e_func1: return e->value * e->a.func1(p->opaque, eval_expr(p, e->param[0]));
  180. case e_func2: return e->value * e->a.func2(p->opaque, eval_expr(p, e->param[0]), eval_expr(p, e->param[1]));
  181. case e_squish: return 1/(1+exp(4*eval_expr(p, e->param[0])));
  182. case e_gauss: { double d = eval_expr(p, e->param[0]); return exp(-d*d/2)/sqrt(2*M_PI); }
  183. case e_ld: return e->value * p->var[av_clip(eval_expr(p, e->param[0]), 0, VARS-1)];
  184. case e_isnan: return e->value * !!isnan(eval_expr(p, e->param[0]));
  185. case e_isinf: return e->value * !!isinf(eval_expr(p, e->param[0]));
  186. case e_floor: return e->value * floor(eval_expr(p, e->param[0]));
  187. case e_ceil : return e->value * ceil (eval_expr(p, e->param[0]));
  188. case e_trunc: return e->value * trunc(eval_expr(p, e->param[0]));
  189. case e_round: return e->value * round(eval_expr(p, e->param[0]));
  190. case e_sgn: return e->value * FFDIFFSIGN(eval_expr(p, e->param[0]), 0);
  191. case e_sqrt: return e->value * sqrt (eval_expr(p, e->param[0]));
  192. case e_not: return e->value * (eval_expr(p, e->param[0]) == 0);
  193. case e_if: return e->value * (eval_expr(p, e->param[0]) ? eval_expr(p, e->param[1]) :
  194. e->param[2] ? eval_expr(p, e->param[2]) : 0);
  195. case e_ifnot: return e->value * (!eval_expr(p, e->param[0]) ? eval_expr(p, e->param[1]) :
  196. e->param[2] ? eval_expr(p, e->param[2]) : 0);
  197. case e_clip: {
  198. double x = eval_expr(p, e->param[0]);
  199. double min = eval_expr(p, e->param[1]), max = eval_expr(p, e->param[2]);
  200. if (isnan(min) || isnan(max) || isnan(x) || min > max)
  201. return NAN;
  202. return e->value * av_clipd(eval_expr(p, e->param[0]), min, max);
  203. }
  204. case e_between: {
  205. double d = eval_expr(p, e->param[0]);
  206. return e->value * (d >= eval_expr(p, e->param[1]) &&
  207. d <= eval_expr(p, e->param[2]));
  208. }
  209. case e_lerp: {
  210. double v0 = eval_expr(p, e->param[0]);
  211. double v1 = eval_expr(p, e->param[1]);
  212. double f = eval_expr(p, e->param[2]);
  213. return v0 + (v1 - v0) * f;
  214. }
  215. case e_print: {
  216. double x = eval_expr(p, e->param[0]);
  217. int level = e->param[1] ? av_clip(eval_expr(p, e->param[1]), INT_MIN, INT_MAX) : AV_LOG_INFO;
  218. av_log(p, level, "%f\n", x);
  219. return x;
  220. }
  221. #define COMPUTE_NEXT_RANDOM() \
  222. int idx = av_clip(eval_expr(p, e->param[0]), 0, VARS-1); \
  223. FFSFC64 *s = p->prng_state + idx; \
  224. uint64_t r; \
  225. \
  226. if (!s->counter) { \
  227. r = isnan(p->var[idx]) ? 0 : p->var[idx]; \
  228. ff_sfc64_init(s, r, r, r, 12); \
  229. } \
  230. r = ff_sfc64_get(s); \
  231. p->var[idx] = r; \
  232. case e_random: {
  233. COMPUTE_NEXT_RANDOM();
  234. return r * (1.0/UINT64_MAX);
  235. }
  236. case e_randomi: {
  237. double min = eval_expr(p, e->param[1]);
  238. double max = eval_expr(p, e->param[2]);
  239. COMPUTE_NEXT_RANDOM();
  240. return min + (max - min) * r / UINT64_MAX;
  241. }
  242. case e_while: {
  243. double d = NAN;
  244. while (eval_expr(p, e->param[0]))
  245. d=eval_expr(p, e->param[1]);
  246. return d;
  247. }
  248. case e_taylor: {
  249. double t = 1, d = 0, v;
  250. double x = eval_expr(p, e->param[1]);
  251. int id = e->param[2] ? av_clip(eval_expr(p, e->param[2]), 0, VARS-1) : 0;
  252. int i;
  253. double var0 = p->var[id];
  254. for(i=0; i<1000; i++) {
  255. double ld = d;
  256. p->var[id] = i;
  257. v = eval_expr(p, e->param[0]);
  258. d += t*v;
  259. if(ld==d && v)
  260. break;
  261. t *= x / (i+1);
  262. }
  263. p->var[id] = var0;
  264. return d;
  265. }
  266. case e_root: {
  267. int i, j;
  268. double low = -1, high = -1, v, low_v = -DBL_MAX, high_v = DBL_MAX;
  269. double var0 = p->var[0];
  270. double x_max = eval_expr(p, e->param[1]);
  271. for(i=-1; i<1024; i++) {
  272. if(i<255) {
  273. p->var[0] = ff_reverse[i&255]*x_max/255;
  274. } else {
  275. p->var[0] = x_max*pow(0.9, i-255);
  276. if (i&1) p->var[0] *= -1;
  277. if (i&2) p->var[0] += low;
  278. else p->var[0] += high;
  279. }
  280. v = eval_expr(p, e->param[0]);
  281. if (v<=0 && v>low_v) {
  282. low = p->var[0];
  283. low_v = v;
  284. }
  285. if (v>=0 && v<high_v) {
  286. high = p->var[0];
  287. high_v = v;
  288. }
  289. if (low>=0 && high>=0){
  290. for (j=0; j<1000; j++) {
  291. p->var[0] = (low+high)*0.5;
  292. if (low == p->var[0] || high == p->var[0])
  293. break;
  294. v = eval_expr(p, e->param[0]);
  295. if (v<=0) low = p->var[0];
  296. if (v>=0) high= p->var[0];
  297. if (isnan(v)) {
  298. low = high = v;
  299. break;
  300. }
  301. }
  302. break;
  303. }
  304. }
  305. p->var[0] = var0;
  306. return -low_v<high_v ? low : high;
  307. }
  308. default: {
  309. double d = eval_expr(p, e->param[0]);
  310. double d2 = eval_expr(p, e->param[1]);
  311. switch (e->type) {
  312. case e_mod: return e->value * (d - floor(d2 ? d / d2 : d * INFINITY) * d2);
  313. case e_gcd: return e->value * av_gcd(d,d2);
  314. case e_max: return e->value * (d > d2 ? d : d2);
  315. case e_min: return e->value * (d < d2 ? d : d2);
  316. case e_eq: return e->value * (d == d2 ? 1.0 : 0.0);
  317. case e_gt: return e->value * (d > d2 ? 1.0 : 0.0);
  318. case e_gte: return e->value * (d >= d2 ? 1.0 : 0.0);
  319. case e_lt: return e->value * (d < d2 ? 1.0 : 0.0);
  320. case e_lte: return e->value * (d <= d2 ? 1.0 : 0.0);
  321. case e_pow: return e->value * pow(d, d2);
  322. case e_mul: return e->value * (d * d2);
  323. case e_div: return e->value * (d2 ? (d / d2) : d * INFINITY);
  324. case e_add: return e->value * (d + d2);
  325. case e_last:return e->value * d2;
  326. case e_st : {
  327. int index = av_clip(d, 0, VARS-1);
  328. p->prng_state[index].counter = 0;
  329. return e->value * (p->var[index]= d2);
  330. }
  331. case e_hypot:return e->value * hypot(d, d2);
  332. case e_atan2:return e->value * atan2(d, d2);
  333. case e_bitand: return isnan(d) || isnan(d2) ? NAN : e->value * ((long int)d & (long int)d2);
  334. case e_bitor: return isnan(d) || isnan(d2) ? NAN : e->value * ((long int)d | (long int)d2);
  335. }
  336. }
  337. }
  338. return NAN;
  339. }
  340. static int parse_expr(AVExpr **e, Parser *p);
  341. void av_expr_free(AVExpr *e)
  342. {
  343. if (!e) return;
  344. av_expr_free(e->param[0]);
  345. av_expr_free(e->param[1]);
  346. av_expr_free(e->param[2]);
  347. av_freep(&e->var);
  348. av_freep(&e->prng_state);
  349. av_freep(&e);
  350. }
  351. static int parse_primary(AVExpr **e, Parser *p)
  352. {
  353. AVExpr *d = av_mallocz(sizeof(AVExpr));
  354. char *next = p->s, *s0 = p->s;
  355. int ret, i;
  356. if (!d)
  357. return AVERROR(ENOMEM);
  358. /* number */
  359. d->value = av_strtod(p->s, &next);
  360. if (next != p->s) {
  361. d->type = e_value;
  362. p->s= next;
  363. *e = d;
  364. return 0;
  365. }
  366. d->value = 1;
  367. /* named constants */
  368. for (i=0; p->const_names && p->const_names[i]; i++) {
  369. if (strmatch(p->s, p->const_names[i])) {
  370. p->s+= strlen(p->const_names[i]);
  371. d->type = e_const;
  372. d->const_index = i;
  373. *e = d;
  374. return 0;
  375. }
  376. }
  377. for (i = 0; i < FF_ARRAY_ELEMS(constants); i++) {
  378. if (strmatch(p->s, constants[i].name)) {
  379. p->s += strlen(constants[i].name);
  380. d->type = e_value;
  381. d->value = constants[i].value;
  382. *e = d;
  383. return 0;
  384. }
  385. }
  386. p->s= strchr(p->s, '(');
  387. if (!p->s) {
  388. av_log(p, AV_LOG_ERROR, "Undefined constant or missing '(' in '%s'\n", s0);
  389. p->s= next;
  390. av_expr_free(d);
  391. return AVERROR(EINVAL);
  392. }
  393. p->s++; // "("
  394. if (*next == '(') { // special case do-nothing
  395. av_freep(&d);
  396. if ((ret = parse_expr(&d, p)) < 0)
  397. return ret;
  398. if (p->s[0] != ')') {
  399. av_log(p, AV_LOG_ERROR, "Missing ')' in '%s'\n", s0);
  400. av_expr_free(d);
  401. return AVERROR(EINVAL);
  402. }
  403. p->s++; // ")"
  404. *e = d;
  405. return 0;
  406. }
  407. if ((ret = parse_expr(&(d->param[0]), p)) < 0) {
  408. av_expr_free(d);
  409. return ret;
  410. }
  411. if (p->s[0]== ',') {
  412. p->s++; // ","
  413. parse_expr(&d->param[1], p);
  414. }
  415. if (p->s[0]== ',') {
  416. p->s++; // ","
  417. parse_expr(&d->param[2], p);
  418. }
  419. if (p->s[0] != ')') {
  420. av_log(p, AV_LOG_ERROR, "Missing ')' or too many args in '%s'\n", s0);
  421. av_expr_free(d);
  422. return AVERROR(EINVAL);
  423. }
  424. p->s++; // ")"
  425. d->type = e_func0;
  426. if (strmatch(next, "sinh" )) d->a.func0 = sinh;
  427. else if (strmatch(next, "cosh" )) d->a.func0 = cosh;
  428. else if (strmatch(next, "tanh" )) d->a.func0 = tanh;
  429. else if (strmatch(next, "sin" )) d->a.func0 = sin;
  430. else if (strmatch(next, "cos" )) d->a.func0 = cos;
  431. else if (strmatch(next, "tan" )) d->a.func0 = tan;
  432. else if (strmatch(next, "atan" )) d->a.func0 = atan;
  433. else if (strmatch(next, "asin" )) d->a.func0 = asin;
  434. else if (strmatch(next, "acos" )) d->a.func0 = acos;
  435. else if (strmatch(next, "exp" )) d->a.func0 = exp;
  436. else if (strmatch(next, "log" )) d->a.func0 = log;
  437. else if (strmatch(next, "abs" )) d->a.func0 = fabs;
  438. else if (strmatch(next, "time" )) d->a.func0 = etime;
  439. else if (strmatch(next, "squish")) d->type = e_squish;
  440. else if (strmatch(next, "gauss" )) d->type = e_gauss;
  441. else if (strmatch(next, "mod" )) d->type = e_mod;
  442. else if (strmatch(next, "max" )) d->type = e_max;
  443. else if (strmatch(next, "min" )) d->type = e_min;
  444. else if (strmatch(next, "eq" )) d->type = e_eq;
  445. else if (strmatch(next, "gte" )) d->type = e_gte;
  446. else if (strmatch(next, "gt" )) d->type = e_gt;
  447. else if (strmatch(next, "lte" )) d->type = e_lte;
  448. else if (strmatch(next, "lt" )) d->type = e_lt;
  449. else if (strmatch(next, "ld" )) d->type = e_ld;
  450. else if (strmatch(next, "isnan" )) d->type = e_isnan;
  451. else if (strmatch(next, "isinf" )) d->type = e_isinf;
  452. else if (strmatch(next, "st" )) d->type = e_st;
  453. else if (strmatch(next, "while" )) d->type = e_while;
  454. else if (strmatch(next, "taylor")) d->type = e_taylor;
  455. else if (strmatch(next, "root" )) d->type = e_root;
  456. else if (strmatch(next, "floor" )) d->type = e_floor;
  457. else if (strmatch(next, "ceil" )) d->type = e_ceil;
  458. else if (strmatch(next, "trunc" )) d->type = e_trunc;
  459. else if (strmatch(next, "round" )) d->type = e_round;
  460. else if (strmatch(next, "sqrt" )) d->type = e_sqrt;
  461. else if (strmatch(next, "not" )) d->type = e_not;
  462. else if (strmatch(next, "pow" )) d->type = e_pow;
  463. else if (strmatch(next, "print" )) d->type = e_print;
  464. else if (strmatch(next, "random")) d->type = e_random;
  465. else if (strmatch(next, "randomi")) d->type = e_randomi;
  466. else if (strmatch(next, "hypot" )) d->type = e_hypot;
  467. else if (strmatch(next, "gcd" )) d->type = e_gcd;
  468. else if (strmatch(next, "if" )) d->type = e_if;
  469. else if (strmatch(next, "ifnot" )) d->type = e_ifnot;
  470. else if (strmatch(next, "bitand")) d->type = e_bitand;
  471. else if (strmatch(next, "bitor" )) d->type = e_bitor;
  472. else if (strmatch(next, "between"))d->type = e_between;
  473. else if (strmatch(next, "clip" )) d->type = e_clip;
  474. else if (strmatch(next, "atan2" )) d->type = e_atan2;
  475. else if (strmatch(next, "lerp" )) d->type = e_lerp;
  476. else if (strmatch(next, "sgn" )) d->type = e_sgn;
  477. else {
  478. for (i=0; p->func1_names && p->func1_names[i]; i++) {
  479. if (strmatch(next, p->func1_names[i])) {
  480. d->a.func1 = p->funcs1[i];
  481. d->type = e_func1;
  482. d->const_index = i;
  483. *e = d;
  484. return 0;
  485. }
  486. }
  487. for (i=0; p->func2_names && p->func2_names[i]; i++) {
  488. if (strmatch(next, p->func2_names[i])) {
  489. d->a.func2 = p->funcs2[i];
  490. d->type = e_func2;
  491. d->const_index = i;
  492. *e = d;
  493. return 0;
  494. }
  495. }
  496. av_log(p, AV_LOG_ERROR, "Unknown function in '%s'\n", s0);
  497. av_expr_free(d);
  498. return AVERROR(EINVAL);
  499. }
  500. *e = d;
  501. return 0;
  502. }
  503. static AVExpr *make_eval_expr(int type, int value, AVExpr *p0, AVExpr *p1)
  504. {
  505. AVExpr *e = av_mallocz(sizeof(AVExpr));
  506. if (!e)
  507. return NULL;
  508. e->type =type ;
  509. e->value =value ;
  510. e->param[0] =p0 ;
  511. e->param[1] =p1 ;
  512. return e;
  513. }
  514. static int parse_pow(AVExpr **e, Parser *p, int *sign)
  515. {
  516. *sign= (*p->s == '+') - (*p->s == '-');
  517. p->s += *sign&1;
  518. return parse_primary(e, p);
  519. }
  520. static int parse_dB(AVExpr **e, Parser *p, int *sign)
  521. {
  522. /* do not filter out the negative sign when parsing a dB value.
  523. for example, -3dB is not the same as -(3dB) */
  524. if (*p->s == '-') {
  525. char *next;
  526. av_unused double ignored = strtod(p->s, &next);
  527. if (next != p->s && next[0] == 'd' && next[1] == 'B') {
  528. *sign = 0;
  529. return parse_primary(e, p);
  530. }
  531. }
  532. return parse_pow(e, p, sign);
  533. }
  534. static int parse_factor(AVExpr **e, Parser *p)
  535. {
  536. int sign, sign2, ret;
  537. AVExpr *e0, *e1, *e2;
  538. if ((ret = parse_dB(&e0, p, &sign)) < 0)
  539. return ret;
  540. while(p->s[0]=='^'){
  541. e1 = e0;
  542. p->s++;
  543. if ((ret = parse_dB(&e2, p, &sign2)) < 0) {
  544. av_expr_free(e1);
  545. return ret;
  546. }
  547. e0 = make_eval_expr(e_pow, 1, e1, e2);
  548. if (!e0) {
  549. av_expr_free(e1);
  550. av_expr_free(e2);
  551. return AVERROR(ENOMEM);
  552. }
  553. if (e0->param[1]) e0->param[1]->value *= (sign2|1);
  554. }
  555. if (e0) e0->value *= (sign|1);
  556. *e = e0;
  557. return 0;
  558. }
  559. static int parse_term(AVExpr **e, Parser *p)
  560. {
  561. int ret;
  562. AVExpr *e0, *e1, *e2;
  563. if ((ret = parse_factor(&e0, p)) < 0)
  564. return ret;
  565. while (p->s[0]=='*' || p->s[0]=='/') {
  566. int c= *p->s++;
  567. e1 = e0;
  568. if ((ret = parse_factor(&e2, p)) < 0) {
  569. av_expr_free(e1);
  570. return ret;
  571. }
  572. e0 = make_eval_expr(c == '*' ? e_mul : e_div, 1, e1, e2);
  573. if (!e0) {
  574. av_expr_free(e1);
  575. av_expr_free(e2);
  576. return AVERROR(ENOMEM);
  577. }
  578. }
  579. *e = e0;
  580. return 0;
  581. }
  582. static int parse_subexpr(AVExpr **e, Parser *p)
  583. {
  584. int ret;
  585. AVExpr *e0, *e1, *e2;
  586. if ((ret = parse_term(&e0, p)) < 0)
  587. return ret;
  588. while (*p->s == '+' || *p->s == '-') {
  589. e1 = e0;
  590. if ((ret = parse_term(&e2, p)) < 0) {
  591. av_expr_free(e1);
  592. return ret;
  593. }
  594. e0 = make_eval_expr(e_add, 1, e1, e2);
  595. if (!e0) {
  596. av_expr_free(e1);
  597. av_expr_free(e2);
  598. return AVERROR(ENOMEM);
  599. }
  600. };
  601. *e = e0;
  602. return 0;
  603. }
  604. static int parse_expr(AVExpr **e, Parser *p)
  605. {
  606. int ret;
  607. AVExpr *e0, *e1, *e2;
  608. if (p->stack_index <= 0) //protect against stack overflows
  609. return AVERROR(EINVAL);
  610. p->stack_index--;
  611. if ((ret = parse_subexpr(&e0, p)) < 0)
  612. return ret;
  613. while (*p->s == ';') {
  614. p->s++;
  615. e1 = e0;
  616. if ((ret = parse_subexpr(&e2, p)) < 0) {
  617. av_expr_free(e1);
  618. return ret;
  619. }
  620. e0 = make_eval_expr(e_last, 1, e1, e2);
  621. if (!e0) {
  622. av_expr_free(e1);
  623. av_expr_free(e2);
  624. return AVERROR(ENOMEM);
  625. }
  626. };
  627. p->stack_index++;
  628. *e = e0;
  629. return 0;
  630. }
  631. static int verify_expr(AVExpr *e)
  632. {
  633. if (!e) return 0;
  634. switch (e->type) {
  635. case e_value:
  636. case e_const: return 1;
  637. case e_func0:
  638. case e_func1:
  639. case e_squish:
  640. case e_ld:
  641. case e_gauss:
  642. case e_isnan:
  643. case e_isinf:
  644. case e_floor:
  645. case e_ceil:
  646. case e_trunc:
  647. case e_round:
  648. case e_sqrt:
  649. case e_not:
  650. case e_random:
  651. case e_sgn:
  652. return verify_expr(e->param[0]) && !e->param[1];
  653. case e_print:
  654. return verify_expr(e->param[0])
  655. && (!e->param[1] || verify_expr(e->param[1]));
  656. case e_if:
  657. case e_ifnot:
  658. case e_taylor:
  659. return verify_expr(e->param[0]) && verify_expr(e->param[1])
  660. && (!e->param[2] || verify_expr(e->param[2]));
  661. case e_between:
  662. case e_clip:
  663. case e_lerp:
  664. case e_randomi:
  665. return verify_expr(e->param[0]) &&
  666. verify_expr(e->param[1]) &&
  667. verify_expr(e->param[2]);
  668. default: return verify_expr(e->param[0]) && verify_expr(e->param[1]) && !e->param[2];
  669. }
  670. }
  671. int av_expr_parse(AVExpr **expr, const char *s,
  672. const char * const *const_names,
  673. const char * const *func1_names, double (* const *funcs1)(void *, double),
  674. const char * const *func2_names, double (* const *funcs2)(void *, double, double),
  675. int log_offset, void *log_ctx)
  676. {
  677. Parser p = { 0 };
  678. AVExpr *e = NULL;
  679. char *w = av_malloc(strlen(s) + 1);
  680. char *wp = w;
  681. const char *s0 = s;
  682. int ret = 0;
  683. if (!w)
  684. return AVERROR(ENOMEM);
  685. while (*s)
  686. if (!av_isspace(*s++)) *wp++ = s[-1];
  687. *wp++ = 0;
  688. p.class = &eval_class;
  689. p.stack_index=100;
  690. p.s= w;
  691. p.const_names = const_names;
  692. p.funcs1 = funcs1;
  693. p.func1_names = func1_names;
  694. p.funcs2 = funcs2;
  695. p.func2_names = func2_names;
  696. p.log_offset = log_offset;
  697. p.log_ctx = log_ctx;
  698. if ((ret = parse_expr(&e, &p)) < 0)
  699. goto end;
  700. if (*p.s) {
  701. av_log(&p, AV_LOG_ERROR, "Invalid chars '%s' at the end of expression '%s'\n", p.s, s0);
  702. ret = AVERROR(EINVAL);
  703. goto end;
  704. }
  705. if (!verify_expr(e)) {
  706. ret = AVERROR(EINVAL);
  707. goto end;
  708. }
  709. e->var= av_mallocz(sizeof(double) *VARS);
  710. e->prng_state = av_mallocz(sizeof(*e->prng_state) *VARS);
  711. if (!e->var || !e->prng_state) {
  712. ret = AVERROR(ENOMEM);
  713. goto end;
  714. }
  715. *expr = e;
  716. e = NULL;
  717. end:
  718. av_expr_free(e);
  719. av_free(w);
  720. return ret;
  721. }
  722. static int expr_count(AVExpr *e, unsigned *counter, int size, int type)
  723. {
  724. int i;
  725. if (!e || !counter || !size)
  726. return AVERROR(EINVAL);
  727. for (i = 0; e->type != type && i < 3 && e->param[i]; i++)
  728. expr_count(e->param[i], counter, size, type);
  729. if (e->type == type && e->const_index < size)
  730. counter[e->const_index]++;
  731. return 0;
  732. }
  733. int av_expr_count_vars(AVExpr *e, unsigned *counter, int size)
  734. {
  735. return expr_count(e, counter, size, e_const);
  736. }
  737. int av_expr_count_func(AVExpr *e, unsigned *counter, int size, int arg)
  738. {
  739. return expr_count(e, counter, size, ((int[]){e_const, e_func1, e_func2})[arg]);
  740. }
  741. double av_expr_eval(AVExpr *e, const double *const_values, void *opaque)
  742. {
  743. Parser p = {
  744. .class = &eval_class,
  745. .const_values = const_values,
  746. .opaque = opaque,
  747. .var = e->var,
  748. .prng_state = e->prng_state,
  749. };
  750. return eval_expr(&p, e);
  751. }
  752. int av_expr_parse_and_eval(double *d, const char *s,
  753. const char * const *const_names, const double *const_values,
  754. const char * const *func1_names, double (* const *funcs1)(void *, double),
  755. const char * const *func2_names, double (* const *funcs2)(void *, double, double),
  756. void *opaque, int log_offset, void *log_ctx)
  757. {
  758. AVExpr *e = NULL;
  759. int ret = av_expr_parse(&e, s, const_names, func1_names, funcs1, func2_names, funcs2, log_offset, log_ctx);
  760. if (ret < 0) {
  761. *d = NAN;
  762. return ret;
  763. }
  764. *d = av_expr_eval(e, const_values, opaque);
  765. av_expr_free(e);
  766. return isnan(*d) ? AVERROR(EINVAL) : 0;
  767. }