Commit 08a866df authored by stefano's avatar stefano

Document pbBufPtr().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18466 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 74660cbe
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment