diff options
author | Alex Beregszaszi <alex@rtfs.hu> | 2004-02-06 17:51:58 +0000 |
---|---|---|
committer | Alex Beregszaszi <alex@rtfs.hu> | 2004-02-06 17:51:58 +0000 |
commit | b46243ed1c54707708140148dc9426ed592e19b5 (patch) | |
tree | 6ed61920409e2016697194297805a8fe324c20ac | |
parent | fe455f3328ca1ae4b71a345f50936d19f30e5c5f (diff) | |
download | ffmpeg-b46243ed1c54707708140148dc9426ed592e19b5.tar.gz |
get_bit_count -> put_bits_count
Originally committed as revision 2753 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/cabac.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cabac.h b/libavcodec/cabac.h index a49e156316..852d47ebe8 100644 --- a/libavcodec/cabac.h +++ b/libavcodec/cabac.h @@ -165,7 +165,7 @@ static inline int put_cabac_terminate(CABACContext *c, int bit){ c->symCount++; #endif - return (get_bit_count(&c->pb)+7)>>3; + return (put_bits_count(&c->pb)+7)>>3; } /** |