diff options
author | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-25 23:34:14 +0000 |
---|---|---|
committer | pl <pl@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2001-10-25 23:34:14 +0000 |
commit | 74d8c35e5d1cc8ee47bcb498a88ca4e78612ed12 (patch) | |
tree | 14b74b2aba36300ceb7826f1aed9bc123c185368 /postproc | |
parent | 4a83e16d1b21b9ad71ed4c5ecfb77bfccd79247b (diff) | |
download | mpv-74d8c35e5d1cc8ee47bcb498a88ca4e78612ed12.tar.bz2 mpv-74d8c35e5d1cc8ee47bcb498a88ca4e78612ed12.tar.xz |
a few warning fixes (missing #include's)
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@2477 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'postproc')
-rw-r--r-- | postproc/postprocess.c | 3 | ||||
-rw-r--r-- | postproc/postprocess_template.c | 3 | ||||
-rw-r--r-- | postproc/swscale.c | 1 | ||||
-rw-r--r-- | postproc/swscale_template.c | 1 |
4 files changed, 8 insertions, 0 deletions
diff --git a/postproc/postprocess.c b/postproc/postprocess.c index dbe60191fb..b097194c92 100644 --- a/postproc/postprocess.c +++ b/postproc/postprocess.c @@ -74,6 +74,9 @@ Notes: #include <stdlib.h> #include <string.h> #include "../config.h" +#ifdef HAVE_MALLOC_H +#include <malloc.h> +#endif //#undef HAVE_MMX2 //#define HAVE_3DNOW //#undef HAVE_MMX diff --git a/postproc/postprocess_template.c b/postproc/postprocess_template.c index dbe60191fb..b097194c92 100644 --- a/postproc/postprocess_template.c +++ b/postproc/postprocess_template.c @@ -74,6 +74,9 @@ Notes: #include <stdlib.h> #include <string.h> #include "../config.h" +#ifdef HAVE_MALLOC_H +#include <malloc.h> +#endif //#undef HAVE_MMX2 //#define HAVE_3DNOW //#undef HAVE_MMX diff --git a/postproc/swscale.c b/postproc/swscale.c index f36cdac937..b26bea4483 100644 --- a/postproc/swscale.c +++ b/postproc/swscale.c @@ -6,6 +6,7 @@ // the parts written by michael are under GNU GPL #include <inttypes.h> +#include <string.h> #include "../config.h" #include "swscale.h" diff --git a/postproc/swscale_template.c b/postproc/swscale_template.c index f36cdac937..b26bea4483 100644 --- a/postproc/swscale_template.c +++ b/postproc/swscale_template.c @@ -6,6 +6,7 @@ // the parts written by michael are under GNU GPL #include <inttypes.h> +#include <string.h> #include "../config.h" #include "swscale.h" |