diff cavsdata.h @ 5163:9ecbfc0c82bf libavcodec

add multiple inclusion guards to headers
author mru
date Sun, 17 Jun 2007 00:01:30 +0000
parents 5d4544d7cbbc
children 3fd46e281bd8
line wrap: on
line diff
--- a/cavsdata.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/cavsdata.h	Sun Jun 17 00:01:30 2007 +0000
@@ -19,6 +19,9 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
  */
 
+#ifndef AVCODEC_CAVSDATA_H
+#define AVCODEC_CAVSDATA_H
+
 #include "cavs.h"
 
 static const uint8_t partition_flags[30] = {
@@ -514,3 +517,5 @@
 static const int_fast8_t top_modifier_l[8]  = {-1, 1, 5,-1,-1, 5, 7, 7};
 static const int_fast8_t left_modifier_c[7] = { 5,-1, 2,-1, 6, 5, 6};
 static const int_fast8_t top_modifier_c[7]  = { 4, 1,-1,-1, 4, 6, 6};
+
+#endif