Mercurial > libavcodec.hg
annotate eval.c @ 4089:4f5f752f732c libavcodec
support seperating expressons by ;
support variables, the syntax isnt beautifull (st(a,b) means var[a]=b and ld(a) var[a]) but for a mere 19 lines of code its fairly simple, if anyone wants to write real variables support with names for variables and = and [] then that would of course be welcome but only if it doesnt bloat the code up terribly...)
| author | michael |
|---|---|
| date | Fri, 27 Oct 2006 22:16:25 +0000 |
| parents | d4cdb9f6e888 |
| children | 8e35dfc4ae15 |
| rev | line source |
|---|---|
| 612 | 1 /* |
| 2 * simple arithmetic expression evaluator | |
| 3 * | |
| 4 * Copyright (c) 2002 Michael Niedermayer <michaelni@gmx.at> | |
| 5 * | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3920
diff
changeset
|
6 * This file is part of FFmpeg. |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3920
diff
changeset
|
7 * |
|
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3920
diff
changeset
|
8 * FFmpeg is free software; you can redistribute it and/or |
| 612 | 9 * modify it under the terms of the GNU Lesser General Public |
| 10 * License as published by the Free Software Foundation; either | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3920
diff
changeset
|
11 * version 2.1 of the License, or (at your option) any later version. |
| 612 | 12 * |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3920
diff
changeset
|
13 * FFmpeg is distributed in the hope that it will be useful, |
| 612 | 14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
| 16 * Lesser General Public License for more details. | |
| 17 * | |
| 18 * You should have received a copy of the GNU Lesser General Public | |
|
3947
c8c591fe26f8
Change license headers to say 'FFmpeg' instead of 'this program/this library'
diego
parents:
3920
diff
changeset
|
19 * License along with FFmpeg; if not, write to the Free Software |
|
3036
0b546eab515d
Update licensing information: The FSF changed postal address.
diego
parents:
2967
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
| 612 | 21 * |
| 22 */ | |
| 23 | |
| 1106 | 24 /** |
| 25 * @file eval.c | |
| 26 * simple arithmetic expression evaluator. | |
| 27 * | |
| 612 | 28 * see http://joe.hotchkiss.com/programming/eval/eval.html |
| 29 */ | |
| 30 | |
| 1057 | 31 #include "avcodec.h" |
| 32 #include "mpegvideo.h" | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
33 #include "eval.h" |
| 1057 | 34 |
| 612 | 35 #include <stdio.h> |
| 36 #include <stdlib.h> | |
| 37 #include <string.h> | |
| 38 #include <math.h> | |
| 39 | |
|
614
b786f15df503
NAN doesnt exist on FreeBSD patch by (R?mi Guyomarch <rguyom at pobox dot com>)
michaelni
parents:
612
diff
changeset
|
40 #ifndef NAN |
| 3753 | 41 #define NAN 0.0/0.0 |
|
614
b786f15df503
NAN doesnt exist on FreeBSD patch by (R?mi Guyomarch <rguyom at pobox dot com>)
michaelni
parents:
612
diff
changeset
|
42 #endif |
|
b786f15df503
NAN doesnt exist on FreeBSD patch by (R?mi Guyomarch <rguyom at pobox dot com>)
michaelni
parents:
612
diff
changeset
|
43 |
| 627 | 44 #ifndef M_PI |
| 45 #define M_PI 3.14159265358979323846 | |
| 46 #endif | |
| 47 | |
| 612 | 48 typedef struct Parser{ |
| 49 int stack_index; | |
| 50 char *s; | |
| 51 double *const_value; | |
| 1057 | 52 const char **const_name; // NULL terminated |
| 612 | 53 double (**func1)(void *, double a); // NULL terminated |
| 1057 | 54 const char **func1_name; // NULL terminated |
| 612 | 55 double (**func2)(void *, double a, double b); // NULL terminated |
| 56 char **func2_name; // NULL terminated | |
| 57 void *opaque; | |
|
3770
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
58 char **error; |
| 4089 | 59 #define VARS 10 |
| 60 double var[VARS]; | |
| 612 | 61 } Parser; |
| 62 | |
| 3778 | 63 static int8_t si_prefixes['z' - 'E' + 1]={ |
| 64 ['y'-'E']= -24, | |
| 65 ['z'-'E']= -21, | |
| 66 ['a'-'E']= -18, | |
| 67 ['f'-'E']= -15, | |
| 68 ['p'-'E']= -12, | |
| 69 ['n'-'E']= - 9, | |
| 70 ['u'-'E']= - 6, | |
| 71 ['m'-'E']= - 3, | |
| 72 ['c'-'E']= - 2, | |
| 73 ['d'-'E']= - 1, | |
| 74 ['h'-'E']= 2, | |
| 75 ['k'-'E']= 3, | |
| 76 ['K'-'E']= 3, | |
| 77 ['M'-'E']= 6, | |
| 78 ['G'-'E']= 9, | |
| 79 ['T'-'E']= 12, | |
| 80 ['P'-'E']= 15, | |
| 81 ['E'-'E']= 18, | |
| 82 ['Z'-'E']= 21, | |
| 83 ['Y'-'E']= 24, | |
| 84 }; | |
| 3756 | 85 |
| 3778 | 86 /** strtod() function extended with 'k', 'M', 'G', 'ki', 'Mi', 'Gi' and 'B' |
| 87 * postfixes. This allows using f.e. kB, MiB, G and B as a postfix. This | |
| 88 * function assumes that the unit of numbers is bits not bytes. | |
| 89 */ | |
| 90 static double av_strtod(const char *name, char **tail) { | |
| 91 double d; | |
| 92 char *next; | |
| 93 d = strtod(name, &next); | |
| 94 /* if parsing succeeded, check for and interpret postfixes */ | |
| 95 if (next!=name) { | |
| 96 | |
| 97 if(*next >= 'E' && *next <= 'z'){ | |
| 98 int e= si_prefixes[*next - 'E']; | |
| 99 if(e){ | |
| 100 if(next[1] == 'i'){ | |
| 101 d*= pow( 2, e/0.3); | |
| 102 next+=2; | |
| 103 }else{ | |
| 104 d*= pow(10, e); | |
| 105 next++; | |
| 106 } | |
| 107 } | |
| 108 } | |
| 109 | |
| 110 if(*next=='B') { | |
| 111 d*=8; | |
| 112 *next++; | |
| 113 } | |
| 114 } | |
| 115 /* if requested, fill in tail with the position after the last parsed | |
| 116 character */ | |
| 117 if (tail) | |
| 118 *tail = next; | |
| 119 return d; | |
| 120 } | |
| 612 | 121 |
| 1057 | 122 static int strmatch(const char *s, const char *prefix){ |
| 612 | 123 int i; |
| 124 for(i=0; prefix[i]; i++){ | |
| 125 if(prefix[i] != s[i]) return 0; | |
| 126 } | |
| 127 return 1; | |
| 128 } | |
| 129 | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
130 struct ff_expr_s { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
131 enum { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
132 e_value, e_const, e_func0, e_func1, e_func2, |
| 4089 | 133 e_squish, e_gauss, e_ld, |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
134 e_mod, e_max, e_min, e_eq, e_gt, e_gte, |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
135 e_pow, e_mul, e_div, e_add, |
| 4089 | 136 e_last, e_st, |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
137 } type; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
138 double value; // is sign in other types |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
139 union { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
140 int const_index; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
141 double (*func0)(double); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
142 double (*func1)(void *, double); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
143 double (*func2)(void *, double, double); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
144 } a; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
145 AVEvalExpr * param[2]; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
146 }; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
147 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
148 static double eval_expr(Parser * p, AVEvalExpr * e) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
149 switch (e->type) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
150 case e_value: return e->value; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
151 case e_const: return e->value * p->const_value[e->a.const_index]; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
152 case e_func0: return e->value * e->a.func0(eval_expr(p, e->param[0])); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
153 case e_func1: return e->value * e->a.func1(p->opaque, eval_expr(p, e->param[0])); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
154 case e_func2: return e->value * e->a.func2(p->opaque, eval_expr(p, e->param[0]), eval_expr(p, e->param[1])); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
155 case e_squish: return 1/(1+exp(4*eval_expr(p, e->param[0]))); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
156 case e_gauss: { double d = eval_expr(p, e->param[0]); return exp(-d*d/2)/sqrt(2*M_PI); } |
| 4089 | 157 case e_ld: return e->value * p->var[clip(eval_expr(p, e->param[0]), 0, VARS-1)]; |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
158 default: { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
159 double d = eval_expr(p, e->param[0]); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
160 double d2 = eval_expr(p, e->param[1]); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
161 switch (e->type) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
162 case e_mod: return e->value * (d - floor(d/d2)*d2); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
163 case e_max: return e->value * (d > d2 ? d : d2); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
164 case e_min: return e->value * (d < d2 ? d : d2); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
165 case e_eq: return e->value * (d == d2 ? 1.0 : 0.0); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
166 case e_gt: return e->value * (d > d2 ? 1.0 : 0.0); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
167 case e_gte: return e->value * (d >= d2 ? 1.0 : 0.0); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
168 case e_pow: return e->value * pow(d, d2); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
169 case e_mul: return e->value * (d * d2); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
170 case e_div: return e->value * (d / d2); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
171 case e_add: return e->value * (d + d2); |
| 4089 | 172 case e_last:return d2; |
| 173 case e_st : return e->value * (p->var[clip(d, 0, VARS-1)]= d2); | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
174 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
175 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
176 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
177 return NAN; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
178 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
179 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
180 static AVEvalExpr * parse_expr(Parser *p); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
181 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
182 void ff_eval_free(AVEvalExpr * e) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
183 if (!e) return; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
184 ff_eval_free(e->param[0]); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
185 ff_eval_free(e->param[1]); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
186 av_freep(&e); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
187 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
188 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
189 static AVEvalExpr * parse_primary(Parser *p) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
190 AVEvalExpr * d = av_mallocz(sizeof(AVEvalExpr)); |
| 612 | 191 char *next= p->s; |
| 192 int i; | |
| 193 | |
| 194 /* number */ | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
195 d->value = av_strtod(p->s, &next); |
| 612 | 196 if(next != p->s){ |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
197 d->type = e_value; |
| 612 | 198 p->s= next; |
| 2434 | 199 return d; |
| 612 | 200 } |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
201 d->value = 1; |
| 2967 | 202 |
| 612 | 203 /* named constants */ |
| 2433 | 204 for(i=0; p->const_name && p->const_name[i]; i++){ |
| 612 | 205 if(strmatch(p->s, p->const_name[i])){ |
| 206 p->s+= strlen(p->const_name[i]); | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
207 d->type = e_const; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
208 d->a.const_index = i; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
209 return d; |
| 612 | 210 } |
| 211 } | |
| 2967 | 212 |
| 612 | 213 p->s= strchr(p->s, '('); |
| 214 if(p->s==NULL){ | |
|
3770
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
215 *p->error = "missing ("; |
| 3754 | 216 p->s= next; |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
217 ff_eval_free(d); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
218 return NULL; |
| 612 | 219 } |
| 220 p->s++; // "(" | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
221 if (*next == '(') { // special case do-nothing |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
222 av_freep(&d); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
223 d = parse_expr(p); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
224 if(p->s[0] != ')'){ |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
225 *p->error = "missing )"; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
226 ff_eval_free(d); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
227 return NULL; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
228 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
229 p->s++; // ")" |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
230 return d; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
231 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
232 d->param[0] = parse_expr(p); |
| 1815 | 233 if(p->s[0]== ','){ |
| 234 p->s++; // "," | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
235 d->param[1] = parse_expr(p); |
| 612 | 236 } |
| 1815 | 237 if(p->s[0] != ')'){ |
|
3770
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
238 *p->error = "missing )"; |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
239 ff_eval_free(d); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
240 return NULL; |
| 1815 | 241 } |
| 242 p->s++; // ")" | |
| 2967 | 243 |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
244 d->type = e_func0; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
245 if( strmatch(next, "sinh" ) ) d->a.func0 = sinh; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
246 else if( strmatch(next, "cosh" ) ) d->a.func0 = cosh; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
247 else if( strmatch(next, "tanh" ) ) d->a.func0 = tanh; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
248 else if( strmatch(next, "sin" ) ) d->a.func0 = sin; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
249 else if( strmatch(next, "cos" ) ) d->a.func0 = cos; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
250 else if( strmatch(next, "tan" ) ) d->a.func0 = tan; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
251 else if( strmatch(next, "atan" ) ) d->a.func0 = atan; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
252 else if( strmatch(next, "asin" ) ) d->a.func0 = asin; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
253 else if( strmatch(next, "acos" ) ) d->a.func0 = acos; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
254 else if( strmatch(next, "exp" ) ) d->a.func0 = exp; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
255 else if( strmatch(next, "log" ) ) d->a.func0 = log; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
256 else if( strmatch(next, "abs" ) ) d->a.func0 = fabs; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
257 else if( strmatch(next, "squish") ) d->type = e_squish; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
258 else if( strmatch(next, "gauss" ) ) d->type = e_gauss; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
259 else if( strmatch(next, "mod" ) ) d->type = e_mod; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
260 else if( strmatch(next, "max" ) ) d->type = e_max; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
261 else if( strmatch(next, "min" ) ) d->type = e_min; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
262 else if( strmatch(next, "eq" ) ) d->type = e_eq; |
|
4087
d4cdb9f6e888
possible bug of 'gte' being read as 'gt', same with 'lte'
ods15
parents:
4086
diff
changeset
|
263 else if( strmatch(next, "gte" ) ) d->type = e_gte; |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
264 else if( strmatch(next, "gt" ) ) d->type = e_gt; |
|
4087
d4cdb9f6e888
possible bug of 'gte' being read as 'gt', same with 'lte'
ods15
parents:
4086
diff
changeset
|
265 else if( strmatch(next, "lte" ) ) { AVEvalExpr * tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gt; } |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
266 else if( strmatch(next, "lt" ) ) { AVEvalExpr * tmp = d->param[1]; d->param[1] = d->param[0]; d->param[0] = tmp; d->type = e_gte; } |
| 4089 | 267 else if( strmatch(next, "ld" ) ) d->type = e_ld; |
| 268 else if( strmatch(next, "st" ) ) d->type = e_st; | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
269 else { |
| 612 | 270 for(i=0; p->func1_name && p->func1_name[i]; i++){ |
| 271 if(strmatch(next, p->func1_name[i])){ | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
272 d->a.func1 = p->func1[i]; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
273 d->type = e_func1; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
274 return d; |
| 612 | 275 } |
| 276 } | |
| 277 | |
| 278 for(i=0; p->func2_name && p->func2_name[i]; i++){ | |
| 279 if(strmatch(next, p->func2_name[i])){ | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
280 d->a.func2 = p->func2[i]; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
281 d->type = e_func2; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
282 return d; |
| 612 | 283 } |
| 284 } | |
| 285 | |
|
3770
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
286 *p->error = "unknown function"; |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
287 ff_eval_free(d); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
288 return NULL; |
| 612 | 289 } |
| 2433 | 290 |
| 2434 | 291 return d; |
| 2967 | 292 } |
| 2436 | 293 |
| 4085 | 294 static AVEvalExpr * new_eval_expr(int type, int value, AVEvalExpr *p0, AVEvalExpr *p1){ |
| 295 AVEvalExpr * e = av_mallocz(sizeof(AVEvalExpr)); | |
| 296 e->type =type ; | |
| 297 e->value =value ; | |
| 298 e->param[0] =p0 ; | |
| 299 e->param[1] =p1 ; | |
| 300 return e; | |
| 301 } | |
| 302 | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
303 static AVEvalExpr * parse_pow(Parser *p, int *sign){ |
| 4032 | 304 *sign= (*p->s == '+') - (*p->s == '-'); |
| 305 p->s += *sign&1; | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
306 return parse_primary(p); |
| 2434 | 307 } |
| 612 | 308 |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
309 static AVEvalExpr * parse_factor(Parser *p){ |
| 4032 | 310 int sign, sign2; |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
311 AVEvalExpr * e = parse_pow(p, &sign); |
| 2434 | 312 while(p->s[0]=='^'){ |
| 612 | 313 p->s++; |
| 4086 | 314 e= new_eval_expr(e_pow, 1, e, parse_pow(p, &sign2)); |
| 315 if (e->param[1]) e->param[1]->value *= (sign2|1); | |
| 612 | 316 } |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
317 if (e) e->value *= (sign|1); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
318 return e; |
| 612 | 319 } |
| 320 | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
321 static AVEvalExpr * parse_term(Parser *p){ |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
322 AVEvalExpr * e = parse_factor(p); |
| 2434 | 323 while(p->s[0]=='*' || p->s[0]=='/'){ |
| 4085 | 324 int c= *p->s++; |
| 325 e= new_eval_expr(c == '*' ? e_mul : e_div, 1, e, parse_factor(p)); | |
| 612 | 326 } |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
327 return e; |
| 612 | 328 } |
| 329 | |
| 4089 | 330 static AVEvalExpr * parse_subexpr(Parser *p) { |
| 331 AVEvalExpr * e = parse_term(p); | |
| 332 while(*p->s == '+' || *p->s == '-') { | |
| 333 e= new_eval_expr(e_add, 1, e, parse_term(p)); | |
| 334 }; | |
| 335 | |
| 336 return e; | |
| 337 } | |
| 338 | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
339 static AVEvalExpr * parse_expr(Parser *p) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
340 AVEvalExpr * e; |
| 612 | 341 |
| 2434 | 342 if(p->stack_index <= 0) //protect against stack overflows |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
343 return NULL; |
| 2434 | 344 p->stack_index--; |
| 345 | |
| 4089 | 346 e = parse_subexpr(p); |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
347 |
| 4089 | 348 while(*p->s == ';') { |
| 349 p->s++; | |
| 350 e= new_eval_expr(e_last, 1, e, parse_subexpr(p)); | |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
351 }; |
| 612 | 352 |
| 2434 | 353 p->stack_index++; |
| 612 | 354 |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
355 return e; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
356 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
357 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
358 static int verify_expr(AVEvalExpr * e) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
359 if (!e) return 0; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
360 switch (e->type) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
361 case e_value: |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
362 case e_const: return 1; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
363 case e_func0: |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
364 case e_func1: |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
365 case e_squish: |
| 4089 | 366 case e_ld: |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
367 case e_gauss: return verify_expr(e->param[0]); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
368 default: return verify_expr(e->param[0]) && verify_expr(e->param[1]); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
369 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
370 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
371 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
372 AVEvalExpr * ff_parse(char *s, const char **const_name, |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
373 double (**func1)(void *, double), const char **func1_name, |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
374 double (**func2)(void *, double, double), char **func2_name, |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
375 char **error){ |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
376 Parser p; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
377 AVEvalExpr * e; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
378 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
379 p.stack_index=100; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
380 p.s= s; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
381 p.const_name = const_name; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
382 p.func1 = func1; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
383 p.func1_name = func1_name; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
384 p.func2 = func2; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
385 p.func2_name = func2_name; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
386 p.error= error; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
387 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
388 e = parse_expr(&p); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
389 if (!verify_expr(e)) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
390 ff_eval_free(e); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
391 return NULL; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
392 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
393 return e; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
394 } |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
395 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
396 double ff_parse_eval(AVEvalExpr * e, double *const_value, void *opaque) { |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
397 Parser p; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
398 |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
399 p.const_value= const_value; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
400 p.opaque = opaque; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
401 return eval_expr(&p, e); |
| 612 | 402 } |
| 403 | |
|
3770
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
404 double ff_eval2(char *s, double *const_value, const char **const_name, |
| 1057 | 405 double (**func1)(void *, double), const char **func1_name, |
| 612 | 406 double (**func2)(void *, double, double), char **func2_name, |
|
3770
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
407 void *opaque, char **error){ |
|
4081
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
408 AVEvalExpr * e = ff_parse(s, const_name, func1, func1_name, func2, func2_name, error); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
409 double d; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
410 if (!e) return NAN; |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
411 d = ff_parse_eval(e, const_value, opaque); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
412 ff_eval_free(e); |
|
cedb63307f3d
new optimized eval method, by seperating parsing and runtime
ods15
parents:
4032
diff
changeset
|
413 return d; |
| 612 | 414 } |
| 2433 | 415 |
|
3779
3f7aa9fa5c98
Break compatibility only when first part of version number changes, in this
takis
parents:
3778
diff
changeset
|
416 #if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) |
|
3770
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
417 attribute_deprecated double ff_eval(char *s, double *const_value, const char **const_name, |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
418 double (**func1)(void *, double), const char **func1_name, |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
419 double (**func2)(void *, double, double), char **func2_name, |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
420 void *opaque){ |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
421 char *error=NULL; |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
422 double ret; |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
423 ret = ff_eval2(s, const_value, const_name, func1, func1_name, func2, func2_name, opaque, &error); |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
424 if (error) |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
425 av_log(NULL, AV_LOG_ERROR, "Error evaluating \"%s\": %s\n", s, error); |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
426 return ret; |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
427 } |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
428 #endif |
|
ea345e1e440f
Introduce ff_eval2 which is equivalent to ff_eval but does not log anything.
takis
parents:
3756
diff
changeset
|
429 |
| 2433 | 430 #ifdef TEST |
| 2967 | 431 #undef printf |
| 2433 | 432 static double const_values[]={ |
| 433 M_PI, | |
| 434 M_E, | |
| 435 0 | |
| 436 }; | |
| 437 static const char *const_names[]={ | |
| 438 "PI", | |
| 439 "E", | |
| 440 0 | |
| 441 }; | |
| 442 main(){ | |
| 2436 | 443 int i; |
| 2433 | 444 printf("%f == 12.7\n", ff_eval("1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)", const_values, const_names, NULL, NULL, NULL, NULL, NULL)); |
| 3730 | 445 printf("%f == 0.931322575\n", ff_eval("80G/80Gi", const_values, const_names, NULL, NULL, NULL, NULL, NULL)); |
| 2967 | 446 |
| 2436 | 447 for(i=0; i<1050; i++){ |
| 448 START_TIMER | |
| 449 ff_eval("1+(5-2)^(3-1)+1/2+sin(PI)-max(-2.2,-3.1)", const_values, const_names, NULL, NULL, NULL, NULL, NULL); | |
| 450 STOP_TIMER("ff_eval") | |
| 451 } | |
| 2433 | 452 } |
| 453 #endif |
