summaryrefslogtreecommitdiff
path: root/libavcodec/eval.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2005-01-15 19:05:26 +0000
committerMichael Niedermayer <michaelni@gmx.at>2005-01-15 19:05:26 +0000
commitb349fde101d5f5296e70fef6992afcbcfc4ba2c0 (patch)
tree60c5fd7be0ac230c17c8df45592e4674258341e2 /libavcodec/eval.c
parent1ede228a4ff54dee3323840b2f6322a66100588d (diff)
simplify, null pointer, selftest
Originally committed as revision 3840 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.c')
-rw-r--r--libavcodec/eval.c37
1 files changed, 25 insertions, 12 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c
index aead600e83..257d969e97 100644
--- a/libavcodec/eval.c
+++ b/libavcodec/eval.c
@@ -99,7 +99,7 @@ static void evalPrimary(Parser *p){
}
/* named constants */
- for(i=0; p->const_name[i]; i++){
+ for(i=0; p->const_name && p->const_name[i]; i++){
if(strmatch(p->s, p->const_name[i])){
push(p, p->const_value[i]);
p->s+= strlen(p->const_name[i]);
@@ -147,29 +147,25 @@ static void evalPrimary(Parser *p){
// else if( strmatch(next, "l1" ) ) d= 1 + d2*(d - 1);
// else if( strmatch(next, "sq01" ) ) d= (d >= 0.0 && d <=1.0) ? 1.0 : 0.0;
else{
- int error=1;
for(i=0; p->func1_name && p->func1_name[i]; i++){
if(strmatch(next, p->func1_name[i])){
d= p->func1[i](p->opaque, d);
- error=0;
- break;
+ goto push_ret;
}
}
for(i=0; p->func2_name && p->func2_name[i]; i++){
if(strmatch(next, p->func2_name[i])){
d= p->func2[i](p->opaque, d, d2);
- error=0;
- break;
+ goto push_ret;
}
}
- if(error){
- av_log(NULL, AV_LOG_ERROR, "Parser: unknown function in \"%s\"\n", next);
- return;
- }
+ av_log(NULL, AV_LOG_ERROR, "Parser: unknown function in \"%s\"\n", next);
+ return;
}
-
+
+push_ret:
push(p, d);
}
@@ -183,7 +179,7 @@ static void evalPow(Parser *p){
}
if(p->s[0]=='('){
- p->s++;;
+ p->s++;
evalExpression(p);
if(p->s[0]!=')')
@@ -255,3 +251,20 @@ double ff_eval(char *s, double *const_value, const char **const_name,
evalExpression(&p);
return pop(&p);
}
+
+#ifdef TEST
+#undef printf
+static double const_values[]={
+ M_PI,
+ M_E,
+ 0
+};
+static const char *const_names[]={
+ "PI",
+ "E",
+ 0
+};
+main(){
+ 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));
+}
+#endif