diff options
-rw-r--r-- | libmpcodecs/vf_spp.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/libmpcodecs/vf_spp.c b/libmpcodecs/vf_spp.c index 639a10c43f..d904746458 100644 --- a/libmpcodecs/vf_spp.c +++ b/libmpcodecs/vf_spp.c @@ -23,7 +23,6 @@ * (http://citeseer.nj.nec.com/nosratinia99embedded.html) */ -#ifdef USE_LIBAVCODEC #include <stdio.h> #include <stdlib.h> @@ -32,6 +31,9 @@ #include <math.h> #include "../config.h" + +#ifdef USE_LIBAVCODEC + #include "../mp_msg.h" #include "../cpudetect.h" #include "../libavcodec/avcodec.h" @@ -497,4 +499,4 @@ vf_info_t vf_info_spp = { NULL }; -#endif //USE_LIBAVCODEC
\ No newline at end of file +#endif //USE_LIBAVCODEC |