diff golomb.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 4394344397d8
children 3fd46e281bd8
line wrap: on
line diff
--- a/golomb.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/golomb.h	Sun Jun 17 00:01:30 2007 +0000
@@ -28,6 +28,9 @@
  * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi
  */
 
+#ifndef AVCODEC_GOLOMB_H
+#define AVCODEC_GOLOMB_H
+
 #include <stdint.h>
 #include "bitstream.h"
 
@@ -480,3 +483,5 @@
 
     set_ur_golomb_jpegls(pb, v, k, limit, esc_len);
 }
+
+#endif