diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-28 01:32:52 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2008-01-28 01:32:52 +0000 |
commit | fe9ec3ffdd77e6ceb397d6823d4e3b5c00e0ea0a (patch) | |
tree | f0146cc7a28f08bb7c5b072e6104254ddec0789b /stream/librtsp | |
parent | f0d20ffa713fdcedc83828eec3b083c0cac879db (diff) |
Consistently use uppercase filename as multiple inclusion guard.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25897 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/librtsp')
-rw-r--r-- | stream/librtsp/rtsp.h | 6 | ||||
-rw-r--r-- | stream/librtsp/rtsp_rtp.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/stream/librtsp/rtsp.h b/stream/librtsp/rtsp.h index 2c3c32eb6d..bc6a4f52a1 100644 --- a/stream/librtsp/rtsp.h +++ b/stream/librtsp/rtsp.h @@ -29,8 +29,8 @@ * fixed a lot of RFC compliance issues. */ -#ifndef HAVE_RTSP_H -#define HAVE_RTSP_H +#ifndef RTSP_H +#define 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 /* HAVE_RTSP_H */ +#endif /* RTSP_H */ diff --git a/stream/librtsp/rtsp_rtp.h b/stream/librtsp/rtsp_rtp.h index 95539cf0ed..15cddf6c7e 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 HAVE_RTSP_RTP_H -#define HAVE_RTSP_RTP_H +#ifndef RTSP_RTP_H +#define 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 /* HAVE_RTSP_RTP_H */ +#endif /* RTSP_RTP_H */ |