Commit b46243ed authored by Alex Beregszaszi's avatar Alex Beregszaszi

get_bit_count -> put_bits_count

Originally committed as revision 2753 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent fe455f33
......@@ -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;
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment