diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-11-09 14:12:19 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-11-09 14:12:19 +0000 |
commit | 16ad1ac3be3e3ac03b4ba57161818074bd4da834 (patch) | |
tree | fff9a678642e022aabb7e7e6d27e88fd7c0b4e12 /libmpcodecs | |
parent | ca60f3fe0fab8ac3a6e17d8af920ebe01ad93520 (diff) | |
download | mpv-16ad1ac3be3e3ac03b4ba57161818074bd4da834.tar.bz2 mpv-16ad1ac3be3e3ac03b4ba57161818074bd4da834.tar.xz |
#include libavcodec/eval.h instead of manually declaring ff_eval.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25000 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpcodecs')
-rw-r--r-- | libmpcodecs/vf_qp.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/libmpcodecs/vf_qp.c b/libmpcodecs/vf_qp.c index 7802e29a6d..34271c4949 100644 --- a/libmpcodecs/vf_qp.c +++ b/libmpcodecs/vf_qp.c @@ -27,18 +27,12 @@ #include "mp_msg.h" #include "cpudetect.h" -#if 1 -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 - // Needed to bring in lrintf. #define HAVE_AV_CONFIG_H #include "libavcodec/avcodec.h" #include "libavcodec/dsputil.h" +#include "libavcodec/eval.h" #include "libavutil/common.h" /* FIXME: common.h defines fprintf away when HAVE_AV_CONFIG |