1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-01 11:50:48 +00:00

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

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26663 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2008-05-03 17:44:27 +00:00
parent 2fb6c0aabf
commit fa1aba5399
2 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,7 @@
#ifndef MPLAYER_RTSP_RTP_H #ifndef MPLAYER_RTSP_RTP_H
#define MPLAYER_RTSP_RTP_H #define MPLAYER_RTSP_RTP_H
#include <sys/types.h>
#include "rtsp.h" #include "rtsp.h"
#define MAX_PREVIEW_SIZE 4096 #define MAX_PREVIEW_SIZE 4096

View File

@ -31,6 +31,8 @@
#ifndef MPLAYER_RTSP_SESSION_H #ifndef MPLAYER_RTSP_SESSION_H
#define MPLAYER_RTSP_SESSION_H #define MPLAYER_RTSP_SESSION_H
#include <stdint.h>
typedef struct rtsp_session_s rtsp_session_t; typedef struct rtsp_session_s rtsp_session_t;
rtsp_session_t *rtsp_session_start(int fd, char **mrl, char *path, char *host, rtsp_session_t *rtsp_session_start(int fd, char **mrl, char *path, char *host,