summaryrefslogtreecommitdiff
path: root/libavcodec/cabac.h
diff options
context:
space:
mode:
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r--libavcodec/cabac.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h
index 3ef7f438a2..7da66d2ef1 100644
--- a/libavcodec/cabac.h
+++ b/libavcodec/cabac.h
@@ -25,6 +25,10 @@
* Context Adaptive Binary Arithmetic Coder.
*/
+#ifndef CABAC_H
+#define CABAC_H
+
+#include "bitstream.h"
//#undef NDEBUG
#include <assert.h>
@@ -857,3 +861,5 @@ static int get_cabac_ueg(CABACContext *c, uint8_t * state, int max, int is_signe
}else
return i;
}
+
+#endif /* CABAC_H */