summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-04 19:04:33 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-01-04 19:04:33 +0000
commit620ab707450f76b1c94017109386078817c7e3ff (patch)
tree5b394ac9c3c206e2bf49316e61cb890d37331c5f
parent00ad5d3fed36de56bb690375a209cdcd31b12ecc (diff)
downloadmpv-620ab707450f76b1c94017109386078817c7e3ff.tar.bz2
mpv-620ab707450f76b1c94017109386078817c7e3ff.tar.xz
Add missing header #includes to fix 'make checkheaders'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30208 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--fmt-conversion.h1
-rw-r--r--libvo/font_load.h2
-rw-r--r--libvo/x11_common.h1
-rw-r--r--loader/qt_fv.h2
4 files changed, 6 insertions, 0 deletions
diff --git a/fmt-conversion.h b/fmt-conversion.h
index f1e44ffe2a..a4ee820353 100644
--- a/fmt-conversion.h
+++ b/fmt-conversion.h
@@ -1,6 +1,7 @@
#ifndef MPLAYER_FMT_CONVERSION_H
#define MPLAYER_FMT_CONVERSION_H
+#include "config.h"
#include "libavutil/avutil.h"
enum PixelFormat imgfmt2pixfmt(int fmt);
diff --git a/libvo/font_load.h b/libvo/font_load.h
index 8dd494b941..ebd03c0963 100644
--- a/libvo/font_load.h
+++ b/libvo/font_load.h
@@ -19,6 +19,8 @@
#ifndef MPLAYER_FONT_LOAD_H
#define MPLAYER_FONT_LOAD_H
+#include "config.h"
+
#ifdef CONFIG_FREETYPE
#include <ft2build.h>
#include FT_FREETYPE_H
diff --git a/libvo/x11_common.h b/libvo/x11_common.h
index bea422e8b5..152e70ff80 100644
--- a/libvo/x11_common.h
+++ b/libvo/x11_common.h
@@ -19,6 +19,7 @@
#ifndef MPLAYER_X11_COMMON_H
#define MPLAYER_X11_COMMON_H
+#include <stdint.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
diff --git a/loader/qt_fv.h b/loader/qt_fv.h
index 94ae02c867..f5dbd1d589 100644
--- a/loader/qt_fv.h
+++ b/loader/qt_fv.h
@@ -1,6 +1,8 @@
#ifndef MPLAYER_QT_FV_H
#define MPLAYER_QT_FV_H
+#include <stddef.h>
+
typedef struct qt_fv_s {
unsigned int id;
char* name;