summaryrefslogtreecommitdiffstats
path: root/stream/realrtsp
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-02-22 09:09:46 +0000
commit8efb2fa21c81f99b37795621f9ec2bc125c6ced0 (patch)
tree9a6f354228affe704b16844775070159e82b5fcd /stream/realrtsp
parent50899e9083661200d9bb105dca0339c14e56d271 (diff)
downloadmpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.bz2
mpv-8efb2fa21c81f99b37795621f9ec2bc125c6ced0.tar.xz
Add MPLAYER_ prefix to multiple inclusion guards.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26061 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/realrtsp')
-rw-r--r--stream/realrtsp/asmrp.h6
-rw-r--r--stream/realrtsp/real.h6
-rw-r--r--stream/realrtsp/rmff.h9
-rw-r--r--stream/realrtsp/sdpplin.h8
-rw-r--r--stream/realrtsp/xbuffer.h7
5 files changed, 17 insertions, 19 deletions
diff --git a/stream/realrtsp/asmrp.h b/stream/realrtsp/asmrp.h
index ac647011f1..b5616db59a 100644
--- a/stream/realrtsp/asmrp.h
+++ b/stream/realrtsp/asmrp.h
@@ -37,11 +37,11 @@
*/
-#ifndef ASMRP_H
-#define ASMRP_H
+#ifndef MPLAYER_ASMRP_H
+#define MPLAYER_ASMRP_H
#define MAX_RULEMATCHES 16
int asmrp_match (const char *rules, int bandwidth, int *matches) ;
-#endif /* ASMRP_H */
+#endif /* MPLAYER_ASMRP_H */
diff --git a/stream/realrtsp/real.h b/stream/realrtsp/real.h
index fd78edfc78..37ac03b28e 100644
--- a/stream/realrtsp/real.h
+++ b/stream/realrtsp/real.h
@@ -27,8 +27,8 @@
*
*/
-#ifndef HAVE_REAL_H
-#define HAVE_REAL_H
+#ifndef MPLAYER_REAL_H
+#define MPLAYER_REAL_H
#include "rmff.h"
#include "../librtsp/rtsp.h"
@@ -57,4 +57,4 @@ rmff_header_t *real_setup_and_get_header(rtsp_t *rtsp_session, uint32_t bandwidt
struct real_rtsp_session_t *init_real_rtsp_session (void);
void free_real_rtsp_session (struct real_rtsp_session_t* real_session);
-#endif /* HAVE_REAL_H */
+#endif /* MPLAYER_REAL_H */
diff --git a/stream/realrtsp/rmff.h b/stream/realrtsp/rmff.h
index 807c05e2ce..639b8522bb 100644
--- a/stream/realrtsp/rmff.h
+++ b/stream/realrtsp/rmff.h
@@ -26,6 +26,9 @@
* adopted from joschkas real tools
*/
+#ifndef MPLAYER_RMFF_H
+#define MPLAYER_RMFF_H
+
#include <sys/types.h>
#include "config.h"
#ifndef HAVE_WINSOCK2
@@ -43,10 +46,6 @@
#include <inttypes.h>
-#ifndef HAVE_RMFF_H
-#define HAVE_RMFF_H
-
-
#define RMFF_HEADER_SIZE 0x12
#define RMFF_FILEHEADER_SIZE 18
@@ -273,4 +272,4 @@ void rmff_dump_pheader(rmff_pheader_t *h, char *data);
*/
void rmff_free_header(rmff_header_t *h);
-#endif /* HAVE_RMFF_H */
+#endif /* MPLAYER_RMFF_H */
diff --git a/stream/realrtsp/sdpplin.h b/stream/realrtsp/sdpplin.h
index 24a7f206a4..ff79c49775 100644
--- a/stream/realrtsp/sdpplin.h
+++ b/stream/realrtsp/sdpplin.h
@@ -25,9 +25,9 @@
* sdp/sdpplin parser.
*
*/
-
-#ifndef HAVE_SDPPLIN_H
-#define HAVE_SDPPLIN_H
+
+#ifndef MPLAYER_SDPPLIN_H
+#define MPLAYER_SDPPLIN_H
#include "rmff.h"
#include "../librtsp/rtsp.h"
@@ -105,4 +105,4 @@ sdpplin_t *sdpplin_parse(char *data);
void sdpplin_free(sdpplin_t *description);
-#endif /* HAVE_SDPPLIN_H */
+#endif /* MPLAYER_SDPPLIN_H */
diff --git a/stream/realrtsp/xbuffer.h b/stream/realrtsp/xbuffer.h
index 84d91a8dc3..f311290d7e 100644
--- a/stream/realrtsp/xbuffer.h
+++ b/stream/realrtsp/xbuffer.h
@@ -13,9 +13,8 @@
*
*/
-
-#ifndef XBUFFER_H
-#define XBUFFER_H
+#ifndef MPLAYER_XBUFFER_H
+#define MPLAYER_XBUFFER_H
void *xbuffer_init(int chunk_size);
void *xbuffer_free(void *buf);
@@ -23,4 +22,4 @@ void *xbuffer_copyin(void *buf, int index, const void *data, int len);
void *xbuffer_ensure_size(void *buf, int size);
void *xbuffer_strcat(void *buf, char *data);
-#endif /* XBUFFER_H */
+#endif /* MPLAYER_XBUFFER_H */