Commit dcb39ab2 authored by stefano's avatar stefano

Document ff_put_string().


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18447 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 0549392d
......@@ -159,6 +159,12 @@ static inline void flush_put_bits(PutBitContext *s)
* Pads the bitstream with zeros up to the next byte boundary.
*/
void align_put_bits(PutBitContext *s);
/**
* Puts the string \p s in the bitstream.
*
* @param terminate_string 0-terminates the written string if value is 1
*/
void ff_put_string(PutBitContext * pbc, const char *s, int terminate_string);
/**
......
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