summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-07 20:07:15 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-03-07 20:07:15 +0000
commitd04df10807bb6b8529a679e9ccb363e84f4d334c (patch)
treec8a28492448c0118740cd9af3516f2b9bf603762
parentcc36be59cbbe1806e8c6568e9c8a84734e7e6481 (diff)
downloadmpv-d04df10807bb6b8529a679e9ccb363e84f4d334c.tar.bz2
mpv-d04df10807bb6b8529a679e9ccb363e84f4d334c.tar.xz
Add missing header #includes to fix 'make checkheaders'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26194 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r--libvo/gl_common.h2
-rw-r--r--libvo/vesa_lvo.h2
-rw-r--r--libvo/video_out_internal.h2
-rw-r--r--libvo/videodev_mjpeg.h2
-rw-r--r--libvo/vosub_vidix.h3
-rw-r--r--libvo/w32_common.h3
6 files changed, 14 insertions, 0 deletions
diff --git a/libvo/gl_common.h b/libvo/gl_common.h
index 8e0d416d48..84a4dc9a10 100644
--- a/libvo/gl_common.h
+++ b/libvo/gl_common.h
@@ -1,6 +1,8 @@
#ifndef MPLAYER_GL_COMMON_H
#define MPLAYER_GL_COMMON_H
+#include <stdio.h>
+
#include "mp_msg.h"
#include "config.h"
diff --git a/libvo/vesa_lvo.h b/libvo/vesa_lvo.h
index 51cecbc158..67a9ee0dd1 100644
--- a/libvo/vesa_lvo.h
+++ b/libvo/vesa_lvo.h
@@ -12,6 +12,8 @@
#ifndef MPLAYER_VESA_LVO_H
#define MPLAYER_VESA_LVO_H
+#include <stdint.h>
+
int vlvo_preinit(const char *drvname);
int vlvo_init(unsigned src_width,unsigned src_height,
unsigned x_org,unsigned y_org,unsigned dst_width,
diff --git a/libvo/video_out_internal.h b/libvo/video_out_internal.h
index 53fd286957..83f38d5771 100644
--- a/libvo/video_out_internal.h
+++ b/libvo/video_out_internal.h
@@ -23,6 +23,8 @@
#ifndef MPLAYER_VIDEO_OUT_INTERNAL_H
#define MPLAYER_VIDEO_OUT_INTERNAL_H
+#include <stdint.h>
+
/* All video drivers will want this */
#include "libmpcodecs/vfcap.h"
#include "libmpcodecs/mp_image.h"
diff --git a/libvo/videodev_mjpeg.h b/libvo/videodev_mjpeg.h
index 752eeb104d..74962e9f5e 100644
--- a/libvo/videodev_mjpeg.h
+++ b/libvo/videodev_mjpeg.h
@@ -6,6 +6,8 @@
#ifndef MPLAYER_VIDEODEV_MJPEG_H
#define MPLAYER_VIDEODEV_MJPEG_H
+#include <stdlib.h>
+
/* This is identical with the mgavideo internal params struct,
please tell me if you change this struct here ! <gz@lysator.liu.se) */
struct mjpeg_params
diff --git a/libvo/vosub_vidix.h b/libvo/vosub_vidix.h
index a1d31285b9..c6427be7b2 100644
--- a/libvo/vosub_vidix.h
+++ b/libvo/vosub_vidix.h
@@ -12,6 +12,9 @@
#ifndef MPLAYER_VOSUB_VIDIX_H
#define MPLAYER_VOSUB_VIDIX_H
+#include <stdint.h>
+#include "video_out.h"
+
/* drvname can be NULL */
int vidix_preinit(const char *drvname,vo_functions_t *server);
int vidix_init(unsigned src_width,unsigned src_height,
diff --git a/libvo/w32_common.h b/libvo/w32_common.h
index 449fd0d98e..219e7d454d 100644
--- a/libvo/w32_common.h
+++ b/libvo/w32_common.h
@@ -1,6 +1,9 @@
#ifndef MPLAYER_W32_COMMON_H
#define MPLAYER_W32_COMMON_H
+#include <stdint.h>
+#include <windows.h>
+
extern HWND vo_w32_window;
extern int vo_vm;