# HG changeset patch # User stefano # Date 1270986444 0 # Node ID 116f25bad5fba768cab10419538f836edc5d3f13 # Parent 7942a09aac64f79401e93f393033bab81e570dd4 Move AVEvalExpr declaration at the beginning of the file, where it is less distracting. diff -r 7942a09aac64 -r 116f25bad5fb eval.h --- a/eval.h Sat Apr 10 17:32:41 2010 +0000 +++ b/eval.h Sun Apr 11 11:47:24 2010 +0000 @@ -28,6 +28,8 @@ #ifndef AVCODEC_EVAL_H #define AVCODEC_EVAL_H +typedef struct ff_expr_s AVEvalExpr; + /** * Parses and evaluates an expression. * Note, this is significantly slower than ff_parse_eval() @@ -47,8 +49,6 @@ double (**func2)(void *, double, double), const char **func2_name, void *opaque, const char **error); -typedef struct ff_expr_s AVEvalExpr; - /** * Parses a expression. * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"