[FFmpeg-cvslog] r22841 - trunk/libavcodec/eval.h

stefano subversion
Sun Apr 11 22:04:15 CEST 2010


Author: stefano
Date: Sun Apr 11 22:04:15 2010
New Revision: 22841

Log:
Place some empty line in the doxy.

Improve readability, also consistent with the predominant doxy style.

Modified:
   trunk/libavcodec/eval.h

Modified: trunk/libavcodec/eval.h
==============================================================================
--- trunk/libavcodec/eval.h	Sun Apr 11 22:04:11 2010	(r22840)
+++ trunk/libavcodec/eval.h	Sun Apr 11 22:04:15 2010	(r22841)
@@ -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 dou
 
 /**
  * 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 c
                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



More information about the ffmpeg-cvslog mailing list