]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/commitdiff
Document pbBufPtr().
authorstefano <stefano@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 12 Apr 2009 09:06:17 +0000 (09:06 +0000)
committerstefano <stefano@9553f0bf-9b14-0410-a0b8-cfaf0461ba5b>
Sun, 12 Apr 2009 09:06:17 +0000 (09:06 +0000)
git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18466 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b

libavcodec/put_bits.h

index 3bddd44ac05de8a01fbaa94df67af34ffdc63ca0..32b11f6445cab5d0c5a754e61516effa3a0e2f23 100644 (file)
@@ -259,7 +259,10 @@ static inline void put_sbits(PutBitContext *pb, int bits, int32_t val)
     put_bits(pb, bits, val & ((1<<bits)-1));
 }
 
-
+/**
+ * Returns the pointer to the byte where the bitstream writer will put
+ * the next bit.
+ */
 static inline uint8_t* pbBufPtr(PutBitContext *s)
 {
 #ifdef ALT_BITSTREAM_WRITER