From: stefano Date: Sat, 11 Apr 2009 21:01:30 +0000 (+0000) Subject: Document ff_put_string(). X-Git-Url: http://rtime.felk.cvut.cz/gitweb/frescor/ffmpeg.git/commitdiff_plain/dcb39ab2d0de75a8b2a94f91e1416b2077576d67 Document ff_put_string(). git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18447 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b --- diff --git a/libavcodec/bitstream.h b/libavcodec/bitstream.h index 519c1884e..a20efc710 100644 --- a/libavcodec/bitstream.h +++ b/libavcodec/bitstream.h @@ -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); /**