diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-10 22:14:45 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-10 22:14:45 +0000 |
commit | e46ddebd14d2b6cc122cb7c06e49e8e4b2432de6 (patch) | |
tree | 57fdbb6402df89f670928d9131b56e5a0d6dbd55 /libavcodec | |
parent | f77dddfcc33dc01da561506f948a6d1f793685f7 (diff) | |
download | ffmpeg-e46ddebd14d2b6cc122cb7c06e49e8e4b2432de6.tar.gz |
Doxygenate put_bits_count() documentation.
Originally committed as revision 18425 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/bitstream.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index e586637e9d..6a12a64cd1 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -116,7 +116,9 @@ static inline void init_put_bits(PutBitContext *s, uint8_t *buffer, int buffer_s #endif } -/* return the number of bits output */ +/** + * Returns the number of bits output. + */ static inline int put_bits_count(PutBitContext *s) { #ifdef ALT_BITSTREAM_WRITER |