summaryrefslogtreecommitdiff
path: root/libavcodec/eval.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 14:15:32 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 14:15:32 +0000
commit80ed701443440d45d108ef3d19a34a77ba64fea3 (patch)
tree50f1ef5ce9006900efff72444e2cea7b52cef25e /libavcodec/eval.h
parent21302fed02e2a824872d6a12536fb605190d651f (diff)
Doxument ff_free_expr().
Originally committed as revision 22837 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.h')
-rw-r--r--libavcodec/eval.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h
index 7935fc8e4b..4b36483c41 100644
--- a/libavcodec/eval.h
+++ b/libavcodec/eval.h
@@ -73,6 +73,9 @@ AVExpr * ff_parse(const char *s, const char * const *const_name,
*/
double ff_parse_eval(AVExpr * e, const double *const_value, void *opaque);
+/**
+ * Frees a parsed expression previously created with ff_parse().
+ */
void ff_free_expr(AVExpr *e);
/**