]> git.sesse.net Git - ffmpeg/commitdiff
Break compatibility only when first part of version number changes, in this
authorPanagiotis Issaris <takis.issaris@uhasselt.be>
Wed, 27 Sep 2006 20:08:36 +0000 (20:08 +0000)
committerPanagiotis Issaris <takis.issaris@uhasselt.be>
Wed, 27 Sep 2006 20:08:36 +0000 (20:08 +0000)
specific case for ff_eval deprecation.

Originally committed as revision 6358 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/eval.c

index 11ca2be2e9c1fc0a6d5a76ebaff84b6c5cb014dc..9414bc956c5f3455ca6502e52df10d463124ee3e 100644 (file)
@@ -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,