summaryrefslogtreecommitdiffstats
path: root/libmpdemux/mpeg_packetizer.h
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-02 22:34:45 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-02 22:34:45 +0000
commit3e9e4acd8dd7b602519a0f5659e6e108efdf31fe (patch)
tree4f5c81629d4eaaf81914e2dfc8b2dd7a11efccf5 /libmpdemux/mpeg_packetizer.h
parent80afc9360a04b7714b97d08dab6310ff8e6a364a (diff)
downloadmpv-3e9e4acd8dd7b602519a0f5659e6e108efdf31fe.tar.bz2
mpv-3e9e4acd8dd7b602519a0f5659e6e108efdf31fe.tar.xz
Do not use leading underscores in multiple inclusion guards, they are reserved.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23709 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'libmpdemux/mpeg_packetizer.h')
-rw-r--r--libmpdemux/mpeg_packetizer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpdemux/mpeg_packetizer.h b/libmpdemux/mpeg_packetizer.h
index 969c2f1133..6a17034f1f 100644
--- a/libmpdemux/mpeg_packetizer.h
+++ b/libmpdemux/mpeg_packetizer.h
@@ -22,8 +22,8 @@
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#ifndef _MPEG_PACKETIZER_H_
-#define _MPEG_PACKETIZER_H_
+#ifndef MPEG_PACKETIZER_H
+#define MPEG_PACKETIZER_H
/* Send MPEG <type> PES packet */
int send_mpeg_pes_packet (unsigned char *data, int len, int id, uint64_t pts,
@@ -38,4 +38,4 @@ int send_mpeg_lpcm_packet (unsigned char *data, int len,
int id, uint64_t pts, int freq_id,
int my_write (unsigned char *data, int len));
-#endif /* _MPEG_PACKETIZER_H_ */
+#endif /* MPEG_PACKETIZER_H */