diff options
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 */ |