summaryrefslogtreecommitdiff
path: root/libavcodec/eval.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 11:47:33 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 11:47:33 +0000
commitf8fea468b2a540651eae731bccc954dbfd71d79d (patch)
tree88b175d2e9fa13058233896990d5775afd6c8979 /libavcodec/eval.h
parent073f6d5b96648d00d9e7af376c558bc85d308748 (diff)
Rename ff_eval_free() to ff_free_expr().
Originally committed as revision 22834 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.h')
-rw-r--r--libavcodec/eval.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h
index 6aec93f005..7935fc8e4b 100644
--- a/libavcodec/eval.h
+++ b/libavcodec/eval.h
@@ -58,7 +58,7 @@ double ff_eval2(const char *s, const double *const_value, const char * const *co
* @param func1_name NULL terminated array of zero terminated strings of func1 identifers
* @param func2_name NULL terminated array of zero terminated strings of func2 identifers
* @param error pointer to a char* which is set to an error message if something goes wrong
- * @return AVExpr which must be freed with ff_eval_free by the user when it is not needed anymore
+ * @return AVExpr which must be freed with ff_free_expr() by the user when it is not needed anymore
* NULL if anything went wrong
*/
AVExpr * ff_parse(const char *s, const char * const *const_name,
@@ -72,7 +72,8 @@ AVExpr * ff_parse(const char *s, const char * const *const_name,
* @return the value of the expression
*/
double ff_parse_eval(AVExpr * e, const double *const_value, void *opaque);
-void ff_eval_free(AVExpr * e);
+
+void ff_free_expr(AVExpr *e);
/**
* Parses the string in numstr and returns its value as a double. If