summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-03 17:44:27 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-03 17:44:27 +0000
commitfa1aba53997e92f7b19cfd2a4f60cd94194d03dc (patch)
treedfdaf68555e3ecf6342bc1365e3d85b2b485aae6 /stream
parent2fb6c0aabf93ae52c78412cf8f027e85bb4ce198 (diff)
downloadmpv-fa1aba53997e92f7b19cfd2a4f60cd94194d03dc.tar.bz2
mpv-fa1aba53997e92f7b19cfd2a4f60cd94194d03dc.tar.xz
Add missing header #includes to fix 'make checkheaders'.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26663 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/librtsp/rtsp_rtp.h1
-rw-r--r--stream/librtsp/rtsp_session.h2
2 files changed, 3 insertions, 0 deletions
diff --git a/stream/librtsp/rtsp_rtp.h b/stream/librtsp/rtsp_rtp.h
index ffdc806add..ea96150777 100644
--- a/stream/librtsp/rtsp_rtp.h
+++ b/stream/librtsp/rtsp_rtp.h
@@ -21,6 +21,7 @@
#ifndef MPLAYER_RTSP_RTP_H
#define MPLAYER_RTSP_RTP_H
+#include <sys/types.h>
#include "rtsp.h"
#define MAX_PREVIEW_SIZE 4096
diff --git a/stream/librtsp/rtsp_session.h b/stream/librtsp/rtsp_session.h
index 53f0f3ea10..15fef5b5d0 100644
--- a/stream/librtsp/rtsp_session.h
+++ b/stream/librtsp/rtsp_session.h
@@ -31,6 +31,8 @@
#ifndef MPLAYER_RTSP_SESSION_H
#define MPLAYER_RTSP_SESSION_H
+#include <stdint.h>
+
typedef struct rtsp_session_s rtsp_session_t;
rtsp_session_t *rtsp_session_start(int fd, char **mrl, char *path, char *host,