Skip to content
Snippets Groups Projects
Commit b46243ed authored by Alex Beregszaszi's avatar Alex Beregszaszi
Browse files

get_bit_count -> put_bits_count

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