diff cabac.h @ 4975:9a6a0818e93f libavcodec

split h264.c to move parser in its own file
author aurel
date Thu, 10 May 2007 22:26:44 +0000
parents 777f250df232
children ce36118abbbb
line wrap: on
line diff
--- a/cabac.h	Thu May 10 22:24:19 2007 +0000
+++ b/cabac.h	Thu May 10 22:26:44 2007 +0000
@@ -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 @@
     }else
         return i;
 }
+
+#endif /* CABAC_H */