diff options
author | Diego Biurrun <diego@biurrun.de> | 2007-10-02 13:14:37 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2007-10-02 13:14:37 +0000 |
commit | b1ef3dfd2ba4abbdf8e0dfafa5b10df9ead8a3c2 (patch) | |
tree | f33735337cc3c8fd9a144320e77886eb9909e098 /libavcodec/cabac.h | |
parent | 1f3a990b3ae78bbe9d97406a88ff6593984382c9 (diff) | |
download | ffmpeg-b1ef3dfd2ba4abbdf8e0dfafa5b10df9ead8a3c2.tar.gz |
100l: Revert accidental commit, restore previous version.
Originally committed as revision 10644 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/cabac.h')
-rw-r--r-- | libavcodec/cabac.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index 637a1c6164..bb682d9498 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -90,7 +90,6 @@ static inline void renorm_cabac_encoder(CABACContext *c){ } } -#if 0 static void put_cabac(CABACContext *c, uint8_t * const state, int bit){ int RangeLPS= ff_h264_lps_range[2*(c->range&0xC0) + *state]; @@ -260,7 +259,6 @@ static void put_cabac_ueg(CABACContext *c, uint8_t * state, int v, int max, int put_cabac_bypass(c, sign); } } -#endif /* 0 */ static void refill(CABACContext *c){ #if CABAC_BITS == 16 @@ -272,7 +270,6 @@ static void refill(CABACContext *c){ c->bytestream+= CABAC_BITS/8; } -#if 0 static void refill2(CABACContext *c){ int i, x; @@ -290,7 +287,6 @@ static void refill2(CABACContext *c){ c->low += x<<i; c->bytestream+= CABAC_BITS/8; } -#endif static inline void renorm_cabac_decoder(CABACContext *c){ while(c->range < 0x100){ @@ -864,6 +860,5 @@ static int get_cabac_ueg(CABACContext *c, uint8_t * state, int max, int is_signe }else return i; } -#endif /* 0 */ #endif /* CABAC_H */ |