comparison libmpcodecs/vf_spp.c @ 11568:cf76671b3d77

Fix compilation if lavc is compiled as a shared lib. Patch by Panagiotis Issaris <takis@lumumba.luc.ac.be>
author alex
date Sun, 07 Dec 2003 15:30:25 +0000
parents 9785bff83777
children 4e2d99dbef78
comparison
equal deleted inserted replaced
11567:a6e12f49eaef 11568:cf76671b3d77
34 34
35 #ifdef USE_LIBAVCODEC 35 #ifdef USE_LIBAVCODEC
36 36
37 #include "../mp_msg.h" 37 #include "../mp_msg.h"
38 #include "../cpudetect.h" 38 #include "../cpudetect.h"
39
40 #ifdef USE_LIBAVCODEC_SO
41 #include <ffmpeg/avcodec.h>
42 #include <ffmpeg/dsputil.h>
43 #else
39 #include "../libavcodec/avcodec.h" 44 #include "../libavcodec/avcodec.h"
40 #include "../libavcodec/dsputil.h" 45 #include "../libavcodec/dsputil.h"
46 #endif
41 47
42 #ifdef HAVE_MALLOC_H 48 #ifdef HAVE_MALLOC_H
43 #include <malloc.h> 49 #include <malloc.h>
44 #endif 50 #endif
45 51