Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2007-06-17 04:01:30 +0400
committerMåns Rullgård <mans@mansr.com>2007-06-17 04:01:30 +0400
commit699b3f99d0376a8fd5159bdad857228bda59cff6 (patch)
tree5df6def799acb5cb1a19d85e770ceafdc4d088a4 /libavcodec/rangecoder.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/rangecoder.h')
-rw-r--r--libavcodec/rangecoder.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/rangecoder.h b/libavcodec/rangecoder.h
index a2fac35519..4f8bbf5880 100644
--- a/libavcodec/rangecoder.h
+++ b/libavcodec/rangecoder.h
@@ -25,6 +25,9 @@
* Range coder.
*/
+#ifndef AVCODEC_RANGECODER_H
+#define AVCODEC_RANGECODER_H
+
#include <stdint.h>
#include <assert.h>
#include "common.h"
@@ -136,3 +139,4 @@ static inline int get_rac(RangeCoder *c, uint8_t * const state){
#endif
}
+#endif