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/golomb.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/golomb.h')
-rw-r--r-- | libavcodec/golomb.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/golomb.h b/libavcodec/golomb.h index b4382d236b..5c34c30929 100644 --- a/libavcodec/golomb.h +++ b/libavcodec/golomb.h @@ -28,6 +28,9 @@ * @author Michael Niedermayer <michaelni@gmx.at> and Alex Beregszaszi */ +#ifndef AVCODEC_GOLOMB_H +#define AVCODEC_GOLOMB_H + #include <stdint.h> #include "bitstream.h" @@ -480,3 +483,5 @@ static inline void set_sr_golomb_flac(PutBitContext *pb, int i, int k, int limit set_ur_golomb_jpegls(pb, v, k, limit, esc_len); } + +#endif |