From 8efb2fa21c81f99b37795621f9ec2bc125c6ced0 Mon Sep 17 00:00:00 2001 From: diego Date: Fri, 22 Feb 2008 09:09:46 +0000 Subject: Add MPLAYER_ prefix to multiple inclusion guards. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26061 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/librtsp/rtsp.h | 6 +++--- stream/librtsp/rtsp_rtp.h | 6 +++--- stream/librtsp/rtsp_session.h | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) (limited to 'stream/librtsp') diff --git a/stream/librtsp/rtsp.h b/stream/librtsp/rtsp.h index bc6a4f52a1..528dacaa42 100644 --- a/stream/librtsp/rtsp.h +++ b/stream/librtsp/rtsp.h @@ -29,8 +29,8 @@ * fixed a lot of RFC compliance issues. */ -#ifndef RTSP_H -#define RTSP_H +#ifndef MPLAYER_RTSP_H +#define MPLAYER_RTSP_H /* some codes returned by rtsp_request_* functions */ @@ -80,4 +80,4 @@ void rtsp_schedule_field(rtsp_t *s, const char *string); void rtsp_unschedule_field(rtsp_t *s, const char *string); void rtsp_unschedule_all(rtsp_t *s); -#endif /* RTSP_H */ +#endif /* MPLAYER_RTSP_H */ diff --git a/stream/librtsp/rtsp_rtp.h b/stream/librtsp/rtsp_rtp.h index 15cddf6c7e..ffdc806add 100644 --- a/stream/librtsp/rtsp_rtp.h +++ b/stream/librtsp/rtsp_rtp.h @@ -18,8 +18,8 @@ * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef RTSP_RTP_H -#define RTSP_RTP_H +#ifndef MPLAYER_RTSP_RTP_H +#define MPLAYER_RTSP_RTP_H #include "rtsp.h" @@ -37,5 +37,5 @@ off_t rtp_read (struct rtp_rtsp_session_t* st, char *buf, off_t length); void rtp_session_free (struct rtp_rtsp_session_t *st); void rtcp_send_rr (rtsp_t *s, struct rtp_rtsp_session_t *st); -#endif /* RTSP_RTP_H */ +#endif /* MPLAYER_RTSP_RTP_H */ diff --git a/stream/librtsp/rtsp_session.h b/stream/librtsp/rtsp_session.h index da2ede77ab..53f0f3ea10 100644 --- a/stream/librtsp/rtsp_session.h +++ b/stream/librtsp/rtsp_session.h @@ -28,8 +28,8 @@ * Support for MPEG-TS streaming through RFC compliant RTSP servers */ -#ifndef HAVE_RTSP_SESSION_H -#define HAVE_RTSP_SESSION_H +#ifndef MPLAYER_RTSP_SESSION_H +#define MPLAYER_RTSP_SESSION_H typedef struct rtsp_session_s rtsp_session_t; @@ -40,4 +40,4 @@ int rtsp_session_read(rtsp_session_t *session, char *data, int len); void rtsp_session_end(rtsp_session_t *session); -#endif /* HAVE_RTSP_SESSION_H */ +#endif /* MPLAYER_RTSP_SESSION_H */ -- cgit v1.2.3