diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-27 20:08:36 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-27 20:08:36 +0000 |
commit | 0ec6065a34b168ed87468d65babe6bccde333ecd (patch) | |
tree | 435eb346c76f2e1a1e28cf1112063c9258d39de6 | |
parent | 95c99430819c60d3365350875d2283e324d5af3a (diff) | |
download | ffmpeg-0ec6065a34b168ed87468d65babe6bccde333ecd.tar.gz |
Break compatibility only when first part of version number changes, in this
specific case for ff_eval deprecation.
Originally committed as revision 6358 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/eval.c b/libavcodec/eval.c index 11ca2be2e9..9414bc956c 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -264,7 +264,7 @@ double ff_eval2(char *s, double *const_value, const char **const_name, return evalExpression(&p); } -#if LIBAVCODEC_VERSION_INT < ((51<<16)+(17<<8)+0) +#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) attribute_deprecated double ff_eval(char *s, double *const_value, const char **const_name, double (**func1)(void *, double), const char **func1_name, double (**func2)(void *, double, double), char **func2_name, |