Mercurial > mplayer.hg
changeset 26162:0585db9f5b32
Add missing header #includes to fix 'make checkheaders'.
author | diego |
---|---|
date | Fri, 07 Mar 2008 20:07:15 +0000 |
parents | 2e9c566ccab9 |
children | f3e72d1a2329 |
files | libvo/gl_common.h libvo/vesa_lvo.h libvo/video_out_internal.h libvo/videodev_mjpeg.h libvo/vosub_vidix.h libvo/w32_common.h |
diffstat | 6 files changed, 14 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/libvo/gl_common.h Fri Mar 07 19:27:08 2008 +0000 +++ b/libvo/gl_common.h Fri Mar 07 20:07:15 2008 +0000 @@ -1,6 +1,8 @@ #ifndef MPLAYER_GL_COMMON_H #define MPLAYER_GL_COMMON_H +#include <stdio.h> + #include "mp_msg.h" #include "config.h"
--- a/libvo/vesa_lvo.h Fri Mar 07 19:27:08 2008 +0000 +++ b/libvo/vesa_lvo.h Fri Mar 07 20:07:15 2008 +0000 @@ -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,
--- a/libvo/video_out_internal.h Fri Mar 07 19:27:08 2008 +0000 +++ b/libvo/video_out_internal.h Fri Mar 07 20:07:15 2008 +0000 @@ -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"
--- a/libvo/videodev_mjpeg.h Fri Mar 07 19:27:08 2008 +0000 +++ b/libvo/videodev_mjpeg.h Fri Mar 07 20:07:15 2008 +0000 @@ -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
--- a/libvo/vosub_vidix.h Fri Mar 07 19:27:08 2008 +0000 +++ b/libvo/vosub_vidix.h Fri Mar 07 20:07:15 2008 +0000 @@ -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,