changeset 31892:b2329beb7406

Add #includes for headers necessary to pass 'make checkheaders'.
author diego
date Wed, 18 Aug 2010 13:45:06 +0000
parents 4f17ff5b3cbc
children c94e2961601c
files libmpdemux/demux_mpg.h libmpdemux/demux_ts.h libvo/sdl_common.h stream/stream_netstream.h subassconvert.h
diffstat 5 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libmpdemux/demux_mpg.h	Tue Aug 17 22:39:24 2010 +0000
+++ b/libmpdemux/demux_mpg.h	Wed Aug 18 13:45:06 2010 +0000
@@ -19,6 +19,8 @@
 #ifndef MPLAYER_DEMUX_MPG_H
 #define MPLAYER_DEMUX_MPG_H
 
+#include <sys/types.h>
+
 extern off_t ps_probe;
 
 #endif /* MPLAYER_DEMUX_MPG_H */
--- a/libmpdemux/demux_ts.h	Tue Aug 17 22:39:24 2010 +0000
+++ b/libmpdemux/demux_ts.h	Wed Aug 18 13:45:06 2010 +0000
@@ -19,6 +19,8 @@
 #ifndef MPLAYER_DEMUX_TS_H
 #define MPLAYER_DEMUX_TS_H
 
+#include <sys/types.h>
+
 #define TS_MAX_PROBE_SIZE 2000000
 
 extern off_t ts_probe;
--- a/libvo/sdl_common.h	Tue Aug 17 22:39:24 2010 +0000
+++ b/libvo/sdl_common.h	Wed Aug 18 13:45:06 2010 +0000
@@ -22,6 +22,7 @@
 #define MPLAYER_SDL_COMMON_H
 
 #include "config.h"
+#include <stdint.h>
 #ifdef CONFIG_SDL_SDL_H
 #include <SDL/SDL.h>
 #else
--- a/stream/stream_netstream.h	Tue Aug 17 22:39:24 2010 +0000
+++ b/stream/stream_netstream.h	Wed Aug 18 13:45:06 2010 +0000
@@ -33,8 +33,10 @@
 #if !HAVE_WINSOCK2_H
 #include <sys/socket.h>
 #endif
+
 #include "mp_msg.h"
 #include "mpbswap.h"
+#include "network.h"
 
 typedef struct mp_net_stream_packet_st {
   uint16_t len;
--- a/subassconvert.h	Tue Aug 17 22:39:24 2010 +0000
+++ b/subassconvert.h	Wed Aug 18 13:45:06 2010 +0000
@@ -21,6 +21,8 @@
 #ifndef MPLAYER_SUBASSCONVERT_H
 #define MPLAYER_SUBASSCONVERT_H
 
+#include <sys/types.h>
+
 void subassconvert_subrip(const char *orig, char *dest, size_t dest_buffer_size);
 void subassconvert_microdvd(const char *orig, char *dest, size_t dest_buffer_size);