diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-11 21:04:26 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-04-11 21:04:26 +0000 |
commit | 4af615b81e99cc3897c4106b71d28ccc617b2391 (patch) | |
tree | 8aaa990974f018db77d12f907eda31f7810be71d | |
parent | 930cab5944268c72722ff55ffd0daf0d55c44453 (diff) | |
download | ffmpeg-4af615b81e99cc3897c4106b71d28ccc617b2391.tar.gz |
Document the 'size' parameter of set_put_bits_buffer_size().
Originally committed as revision 18448 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/bitstream.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index a20efc710a..e2d557669e 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -372,6 +372,8 @@ static inline void skip_put_bits(PutBitContext *s, int n){ /** * Changes the end of the buffer. + * + * @param size the new size in bytes of the buffer where to put bits */ static inline void set_put_bits_buffer_size(PutBitContext *s, int size){ s->buf_end= s->buf + size; |