diff options
author | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-27 11:09:35 +0000 |
---|---|---|
committer | Panagiotis Issaris <takis.issaris@uhasselt.be> | 2006-09-27 11:09:35 +0000 |
commit | a2eb288ac7cb4435c02f72928ba208bbed902ceb (patch) | |
tree | 55e8c354b6a52bdf5162b86fe19e243f5230a52b /libavcodec | |
parent | 050b60b2ccf90f73f40dd5655dfe7038b43878c0 (diff) | |
download | ffmpeg-a2eb288ac7cb4435c02f72928ba208bbed902ceb.tar.gz |
Fix compilation by postponing deprecation of ff_eval() until the next version
increment.
Originally committed as revision 6352 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-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 ea4a17a004..72822ee318 100644 --- a/libavcodec/eval.c +++ b/libavcodec/eval.c @@ -206,7 +206,7 @@ double ff_eval2(char *s, double *const_value, const char **const_name, return evalExpression(&p); } -#if LIBAVCODEC_VERSION_INT < ((51<<16)+(16<<8)+0) +#if LIBAVCODEC_VERSION_INT < ((51<<16)+(17<<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, |