diff dv.h @ 2172:92f61ed53965 libavformat

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents a6d6b2b19341
children f6021da48f21
line wrap: on
line diff
--- a/dv.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/dv.h	Sun Jun 17 00:01:30 2007 +0000
@@ -25,6 +25,9 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#ifndef AVFORMAT_DV_H
+#define AVFORMAT_DV_H
+
 #include "avformat.h"
 
 typedef struct DVDemuxContext DVDemuxContext;
@@ -37,3 +40,5 @@
 DVMuxContext* dv_init_mux(AVFormatContext* s);
 int dv_assemble_frame(DVMuxContext *c, AVStream*, const uint8_t*, int, uint8_t**);
 void dv_delete_mux(DVMuxContext*);
+
+#endif