Commit 8e3b936f authored by stefano's avatar stefano

Move AVEvalExpr declaration at the beginning of the file, where it is

less distracting.

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22832 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 887b9ab1
...@@ -28,6 +28,8 @@ ...@@ -28,6 +28,8 @@
#ifndef AVCODEC_EVAL_H #ifndef AVCODEC_EVAL_H
#define AVCODEC_EVAL_H #define AVCODEC_EVAL_H
typedef struct ff_expr_s AVEvalExpr;
/** /**
* Parses and evaluates an expression. * Parses and evaluates an expression.
* Note, this is significantly slower than ff_parse_eval() * Note, this is significantly slower than ff_parse_eval()
...@@ -47,8 +49,6 @@ double ff_eval2(const char *s, const double *const_value, const char * const *co ...@@ -47,8 +49,6 @@ double ff_eval2(const char *s, const double *const_value, const char * const *co
double (**func2)(void *, double, double), const char **func2_name, double (**func2)(void *, double, double), const char **func2_name,
void *opaque, const char **error); void *opaque, const char **error);
typedef struct ff_expr_s AVEvalExpr;
/** /**
* Parses a expression. * Parses a expression.
* @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)" * @param s expression as a zero terminated string for example "1+2^3+5*5+sin(2/3)"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment