Make get_bits_left() available for use in libavcodec (was previously held

private in dv.c for some reason). See "[PATCH] get_bits_left()" thread.

Originally committed as revision 20490 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Ronald S. Bultje
2009-11-09 22:10:43 +00:00
parent b1ade3d182
commit c47ca25e74
2 changed files with 5 additions and 5 deletions

View File

@@ -702,4 +702,9 @@ static inline int decode210(GetBitContext *gb){
return 2 - get_bits1(gb);
}
static inline int get_bits_left(GetBitContext *gb)
{
return gb->size_in_bits - get_bits_count(gb);
}
#endif /* AVCODEC_GET_BITS_H */