diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-04-12 19:21:15 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2010-04-12 19:21:15 +0000 |
commit | 1235429c2792e879d50a06cc851f3065f1a481d5 (patch) | |
tree | 24583f9766dc0aa686e0aee69bb56af0f990143c /libavcodec/eval.h | |
parent | 6c71d2c1357018f7f68a8bde773306298ce72057 (diff) | |
download | ffmpeg-1235429c2792e879d50a06cc851f3065f1a481d5.tar.gz |
Rename ff_parse() to ff_parse_expr().
The new name is more expressive and fits better in the overall naming
scheme for the revisited eval API.
Originally committed as revision 22858 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/eval.h')
-rw-r--r-- | libavcodec/eval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h index 41bcd8c133..438835d022 100644 --- a/libavcodec/eval.h +++ b/libavcodec/eval.h @@ -61,7 +61,7 @@ double ff_parse_and_eval_expr(const char *s, const double *const_value, const ch * @return AVExpr which must be freed with ff_free_expr() by the user when it is not needed anymore * NULL if anything went wrong */ -AVExpr * ff_parse(const char *s, const char * const *const_name, +AVExpr *ff_parse_expr(const char *s, const char * const *const_name, double (**func1)(void *, double), const char **func1_name, double (**func2)(void *, double, double), const char **func2_name, const char **error); |