diff options
author | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-10 22:26:44 +0000 |
---|---|---|
committer | Aurelien Jacobs <aurel@gnuage.org> | 2007-05-10 22:26:44 +0000 |
commit | 26b4fe821c0a6610e0d5598552e0a0e6114d4046 (patch) | |
tree | 6a3b04021db62ff8dbfe43917e822adabae5ad6e /libavcodec/cabac.h | |
parent | eca3810e31a15c62b24408f5b4ae53f2c043911a (diff) | |
download | ffmpeg-26b4fe821c0a6610e0d5598552e0a0e6114d4046.tar.gz |
split h264.c to move parser in its own file
Originally committed as revision 8985 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r-- | libavcodec/cabac.h | 6 |
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 */ |