summaryrefslogtreecommitdiff
path: root/libavcodec/eval.h
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 20:04:15 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-04-11 20:04:15 +0000
commitf54978f11759e3407fb3bf7c45a67dab3fff15c0 (patch)
tree9a0208be48001dbcdd149fd58969c21c9155fc4e /libavcodec/eval.h
parent8c21647382a0b15cedf24f0b29420c66b2006c15 (diff)
Place some empty line in the doxy.
Improve readability, also consistent with the predominant doxy style. Originally committed as revision 22841 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.h')
-rw-r--r--libavcodec/eval.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h
index 9e8a6b0d0e..47446f72ab 100644
--- a/libavcodec/eval.h
+++ b/libavcodec/eval.h
@@ -31,6 +31,7 @@ typedef struct AVExpr AVExpr;
/**
* Parses and evaluates an expression.
* Note, this is significantly slower than ff_parse_eval()
+ *
* @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
* @param func1 NULL terminated array of function pointers for functions which take 1 argument
* @param func2 NULL terminated array of function pointers for functions which take 2 arguments
@@ -49,6 +50,7 @@ double ff_eval2(const char *s, const double *const_value, const char * const *co
/**
* Parses a expression.
+ *
* @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
* @param func1 NULL terminated array of function pointers for functions which take 1 argument
* @param func2 NULL terminated array of function pointers for functions which take 2 arguments
@@ -63,8 +65,10 @@ AVExpr * ff_parse(const char *s, const char * const *const_name,
double (**func1)(void *, double), const char **func1_name,
double (**func2)(void *, double, double), const char **func2_name,
const char **error);
+
/**
* Evaluates a previously parsed expression.
+ *
* @param const_value a zero terminated array of values for the identifers from ff_parse const_name
* @param opaque a pointer which will be passed to all functions from func1 and func2
* @return the value of the expression