diff libmpdemux/mpeg_hdr.h @ 25553:6ac1ece1f9fe

Add multiple inclusion guards to all header files that lack them.
author diego
date Tue, 01 Jan 2008 21:35:58 +0000
parents 328d1b36952a
children 4129c8cfa742
line wrap: on
line diff
--- a/libmpdemux/mpeg_hdr.h	Tue Jan 01 21:20:06 2008 +0000
+++ b/libmpdemux/mpeg_hdr.h	Tue Jan 01 21:35:58 2008 +0000
@@ -1,3 +1,5 @@
+#ifndef MPEG_HDR_H
+#define MPEG_HDR_H
 
 typedef struct {
     // video info:
@@ -27,3 +29,5 @@
 void mp4_header_process_vop(mp_mpeg_header_t * picture, unsigned char * buffer);
 int h264_parse_sps(mp_mpeg_header_t * picture, unsigned char * buf, int len);
 int mp_vc1_decode_sequence_header(mp_mpeg_header_t * picture, unsigned char * buf, int len);
+
+#endif /* MPEG_HDR_H */