summaryrefslogtreecommitdiff
path: root/libavcodec/eval.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 22:32:04 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 22:32:04 +0000
commita367be1e88152458cdd3b31eb9a0bd06c9eb881b (patch)
treeb607f651c9655804ab07a7cf936ca80d00f405b1 /libavcodec/eval.h
parent4565caf120b04884e5b13f4e452f280b8d10f3f6 (diff)
Rename ff_eval2() to ff_parse_and_eval_expr().
The new name better expresses what the function does. Originally committed as revision 22845 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.h')
-rw-r--r--libavcodec/eval.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h
index 6551b44a71..41bcd8c133 100644
--- a/libavcodec/eval.h
+++ b/libavcodec/eval.h
@@ -43,7 +43,7 @@ typedef struct AVExpr AVExpr;
* @param opaque a pointer which will be passed to all functions from func1 and func2
* @return the value of the expression
*/
-double ff_eval2(const char *s, const double *const_value, const char * const *const_name,
+double ff_parse_and_eval_expr(const char *s, const double *const_value, const char * const *const_name,
double (**func1)(void *, double), const char **func1_name,
double (**func2)(void *, double, double), const char **func2_name,
void *opaque, const char **error);