Commit bb7ed750 authored by alex's avatar alex

get_bit_count -> put_bits_count


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@2753 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 76d77166
...@@ -165,7 +165,7 @@ static inline int put_cabac_terminate(CABACContext *c, int bit){ ...@@ -165,7 +165,7 @@ static inline int put_cabac_terminate(CABACContext *c, int bit){
c->symCount++; c->symCount++;
#endif #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