diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-11 13:04:33 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-11 13:04:33 +0000 |
commit | 0a73e94fd68dbdb295177a0df604729cc8122b94 (patch) | |
tree | 1ba8423d3454dbf3886eba36b77d5e93681e331c | |
parent | 80d403fc195dd81463a9fcaac94ea55dd682867f (diff) | |
download | ffmpeg-0a73e94fd68dbdb295177a0df604729cc8122b94.tar.gz |
Clarify documentation for put_bits_count().
Originally committed as revision 18432 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bitstream.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index f3d78fdfff..699c4a5c2a 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -117,7 +117,7 @@ static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_s } /** - * Returns the number of bits output. + * Returns the total number of bits written to the bitstream. */ static inline int put_bits_count(PutBitContext *s) { |