diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2008-09-08 23:47:50 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2008-09-08 23:47:50 +0000 |
commit | 03ea32f8504dac6193a56a6430445ab67e43ef0a (patch) | |
tree | 1633ec8539c47b19e59c396660d94dce4626da70 | |
parent | bf912a482b01ce0c0b5396bf5ce92fc891fd7d73 (diff) | |
download | ffmpeg-03ea32f8504dac6193a56a6430445ab67e43ef0a.tar.gz |
remove one more stuff under #if LIBAVCODEC_VERSION_INT
which was forgotten in r15263
Originally committed as revision 15278 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/eval.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libavcodec/eval.h b/libavcodec/eval.h index 2083a6307c..0918fc9b7d 100644 --- a/libavcodec/eval.h +++ b/libavcodec/eval.h @@ -28,16 +28,6 @@ #ifndef AVCODEC_EVAL_H #define AVCODEC_EVAL_H -#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) -/** - * @deprecated Use ff_eval2 instead - */ -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, - void *opaque); -#endif - /** * Parses and evaluates an expression. * Note, this is significantly slower than ff_parse_eval() |