From 80ed701443440d45d108ef3d19a34a77ba64fea3 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Sun, 11 Apr 2010 14:15:32 +0000 Subject: [PATCH] Doxument ff_free_expr(). Originally committed as revision 22837 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/eval.h | 3 +++ 1 file changed, 3 insertions(+) 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); /**