diff options
author | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2007-06-17 00:01:30 +0000 |
commit | 699b3f99d0376a8fd5159bdad857228bda59cff6 (patch) | |
tree | 5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavcodec/imcdata.h | |
parent | 99545457bf1175d55e4eaa2c061dbf0faeb661ec (diff) | |
download | ffmpeg-699b3f99d0376a8fd5159bdad857228bda59cff6.tar.gz |
add multiple inclusion guards to headers
Originally committed as revision 9345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/imcdata.h')
-rw-r--r-- | libavcodec/imcdata.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/imcdata.h b/libavcodec/imcdata.h index 446bf0b176..5e22123e6c 100644 --- a/libavcodec/imcdata.h +++ b/libavcodec/imcdata.h @@ -22,6 +22,9 @@ * */ +#ifndef AVCODEC_IMCDATA_H +#define AVCODEC_IMCDATA_H + #include <stdint.h> static const uint16_t band_tab[33] = { @@ -164,3 +167,4 @@ static const uint16_t imc_huffman_bits[4][4][18] = { } }; +#endif |