comparison eval.h @ 11620:29bd5deb7dfc libavcodec

Remove stray empty line.
author stefano
date Mon, 12 Apr 2010 21:49:01 +0000
parents 1461e6044153
children 84df190892f4
comparison
equal deleted inserted replaced
11619:8d3539d6ba3d 11620:29bd5deb7dfc
59 * @param func2_name NULL terminated array of zero terminated strings of func2 identifers 59 * @param func2_name NULL terminated array of zero terminated strings of func2 identifers
60 * @param error pointer to a char* which is set to an error message if something goes wrong 60 * @param error pointer to a char* which is set to an error message if something goes wrong
61 * @return AVExpr which must be freed with ff_free_expr() by the user when it is not needed anymore 61 * @return AVExpr which must be freed with ff_free_expr() by the user when it is not needed anymore
62 * NULL if anything went wrong 62 * NULL if anything went wrong
63 */ 63 */
64
65 AVExpr *ff_parse_expr(const char *s, const char * const *const_name, 64 AVExpr *ff_parse_expr(const char *s, const char * const *const_name,
66 double (* const *func1)(void *, double), const char * const *func1_name, 65 double (* const *func1)(void *, double), const char * const *func1_name,
67 double (* const *func2)(void *, double, double), const char * const *func2_name, 66 double (* const *func2)(void *, double, double), const char * const *func2_name,
68 const char **error); 67 const char **error);
69 68