diff mpegaudiotab.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/mpegaudiotab.h	Sat Jun 16 22:59:13 2007 +0000
+++ b/mpegaudiotab.h	Sun Jun 17 00:01:30 2007 +0000
@@ -27,6 +27,9 @@
  * Most of them come from the mpeg audio specification.
  */
 
+#ifndef AVCODEC_MPEGAUDIOTAB_H
+#define AVCODEC_MPEGAUDIOTAB_H
+
 #include <stdint.h>
 #include "mpegaudio.h"
 
@@ -112,3 +115,4 @@
 
 static const unsigned char nb_scale_factors[4] = { 3, 2, 1, 2 };
 
+#endif