diff mpegaudiodectab.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/mpegaudiodectab.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/mpegaudiodectab.h	Sun Jun 17 00:01:30 2007 +0000
@@ -24,6 +24,9 @@
  * mpeg audio layer decoder tables.
  */
 
+#ifndef AVCODEC_MPEGAUDIODECTAB_H
+#define AVCODEC_MPEGAUDIODECTAB_H
+
 #include <stdint.h>
 #include "mpegaudio.h"
 
@@ -599,3 +602,5 @@
 static const float ci_table[8] = {
     -0.6, -0.535, -0.33, -0.185, -0.095, -0.041, -0.0142, -0.0037,
 };
+
+#endif