From b46243ed1c54707708140148dc9426ed592e19b5 Mon Sep 17 00:00:00 2001 From: Alex Beregszaszi Date: Fri, 6 Feb 2004 17:51:58 +0000 Subject: [PATCH] get_bit_count -> put_bits_count Originally committed as revision 2753 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/cabac.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } /**