diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-04-11 11:47:24 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-04-11 11:47:24 +0000 |
commit | 5fccafdbc16560e2d62aa40003b7639f2bbc4b29 (patch) | |
tree | d26e4274980fffe32f6cef478430bccc3e20069f /libavcodec | |
parent | 0f1f4816d59cbc0d5144699ab356763387d2732d (diff) | |
download | ffmpeg-5fccafdbc16560e2d62aa40003b7639f2bbc4b29.tar.gz |
Move AVEvalExpr declaration at the beginning of the file, where it is
less distracting.
Originally committed as revision 22832 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/eval.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h index 5481b1407c..0d2cd70249 100644 --- a/libavcodec/eval.h +++ b/libavcodec/eval.h @@ -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 ff_eval2(const char *s, const double *const_value, const char * const *co 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)" |