summaryrefslogtreecommitdiff
path: root/libavcodec/vorbis_enc_data.h
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-06-17 00:01:30 +0000
committerMåns Rullgård <mans@mansr.com>2007-06-17 00:01:30 +0000
commit699b3f99d0376a8fd5159bdad857228bda59cff6 (patch)
tree5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavcodec/vorbis_enc_data.h
parent99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff)
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vorbis_enc_data.h')
-rw-r--r--libavcodec/vorbis_enc_data.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/vorbis_enc_data.h b/libavcodec/vorbis_enc_data.h
index 5d5e4cad90..82ca514df0 100644
--- a/libavcodec/vorbis_enc_data.h
+++ b/libavcodec/vorbis_enc_data.h
@@ -18,6 +18,9 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+#ifndef AVCODEC_VORBIS_ENC_DATA_H
+#define AVCODEC_VORBIS_ENC_DATA_H
+
#include <stdint.h>
static const uint8_t codebook0[] = {
@@ -498,3 +501,5 @@ static const struct {
{ 4, 2, 2, (const int[]){ -1, 9, 10, 11 } },
{ 3, 2, 3, (const int[]){ -1, 12, 13, 14 } },
};
+
+#endif