comparison libmpcodecs/vf_qp.c @ 24972:60e8bf1f23e9

#include libavcodec/eval.h instead of manually declaring ff_eval.
author diego
date Fri, 09 Nov 2007 14:12:19 +0000
parents 918b0974e3a1
children 6f05850b5fd1
comparison
equal deleted inserted replaced
24971:8bbc042f23c4 24972:60e8bf1f23e9
25 #include "config.h" 25 #include "config.h"
26 26
27 #include "mp_msg.h" 27 #include "mp_msg.h"
28 #include "cpudetect.h" 28 #include "cpudetect.h"
29 29
30 #if 1
31 double ff_eval(char *s, double *const_value, const char **const_name,
32 double (**func1)(void *, double), const char **func1_name,
33 double (**func2)(void *, double, double), char **func2_name,
34 void *opaque);
35 #endif
36
37 // Needed to bring in lrintf. 30 // Needed to bring in lrintf.
38 #define HAVE_AV_CONFIG_H 31 #define HAVE_AV_CONFIG_H
39 32
40 #include "libavcodec/avcodec.h" 33 #include "libavcodec/avcodec.h"
41 #include "libavcodec/dsputil.h" 34 #include "libavcodec/dsputil.h"
35 #include "libavcodec/eval.h"
42 #include "libavutil/common.h" 36 #include "libavutil/common.h"
43 37
44 /* FIXME: common.h defines fprintf away when HAVE_AV_CONFIG 38 /* FIXME: common.h defines fprintf away when HAVE_AV_CONFIG
45 * is defined, but mp_image.h needs fprintf. 39 * is defined, but mp_image.h needs fprintf.
46 */ 40 */