[MPlayer-cvslog] r26194 - in trunk/libvo: gl_common.h vesa_lvo.h video_out_internal.h videodev_mjpeg.h vosub_vidix.h w32_common.h

diego subversion at mplayerhq.hu
Fri Mar 7 21:07:15 CET 2008


Author: diego
Date: Fri Mar  7 21:07:15 2008
New Revision: 26194

Log:
Add missing header #includes to fix 'make checkheaders'.


Modified:
   trunk/libvo/gl_common.h
   trunk/libvo/vesa_lvo.h
   trunk/libvo/video_out_internal.h
   trunk/libvo/videodev_mjpeg.h
   trunk/libvo/vosub_vidix.h
   trunk/libvo/w32_common.h

Modified: trunk/libvo/gl_common.h
==============================================================================
--- trunk/libvo/gl_common.h	(original)
+++ trunk/libvo/gl_common.h	Fri Mar  7 21:07:15 2008
@@ -1,6 +1,8 @@
 #ifndef MPLAYER_GL_COMMON_H
 #define MPLAYER_GL_COMMON_H
 
+#include <stdio.h>
+
 #include "mp_msg.h"
 #include "config.h"
 

Modified: trunk/libvo/vesa_lvo.h
==============================================================================
--- trunk/libvo/vesa_lvo.h	(original)
+++ trunk/libvo/vesa_lvo.h	Fri Mar  7 21:07:15 2008
@@ -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,

Modified: trunk/libvo/video_out_internal.h
==============================================================================
--- trunk/libvo/video_out_internal.h	(original)
+++ trunk/libvo/video_out_internal.h	Fri Mar  7 21:07:15 2008
@@ -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"

Modified: trunk/libvo/videodev_mjpeg.h
==============================================================================
--- trunk/libvo/videodev_mjpeg.h	(original)
+++ trunk/libvo/videodev_mjpeg.h	Fri Mar  7 21:07:15 2008
@@ -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 at lysator.liu.se) */
 struct mjpeg_params

Modified: trunk/libvo/vosub_vidix.h
==============================================================================
--- trunk/libvo/vosub_vidix.h	(original)
+++ trunk/libvo/vosub_vidix.h	Fri Mar  7 21:07:15 2008
@@ -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,

Modified: trunk/libvo/w32_common.h
==============================================================================
--- trunk/libvo/w32_common.h	(original)
+++ trunk/libvo/w32_common.h	Fri Mar  7 21:07:15 2008
@@ -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;
 



More information about the MPlayer-cvslog mailing list