OSDN Git Service

Document the 'size' parameter of set_put_bits_buffer_size().
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 11 Apr 2009 21:04:26 +0000 (21:04 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 11 Apr 2009 21:04:26 +0000 (21:04 +0000)
Originally committed as revision 18448 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/bitstream.h

index a20efc7..e2d5576 100644 (file)
@@ -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;