OSDN Git Service

Document ff_put_string().
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 11 Apr 2009 21:01:30 +0000 (21:01 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Sat, 11 Apr 2009 21:01:30 +0000 (21:01 +0000)
Originally committed as revision 18447 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/bitstream.h

index 519c188..a20efc7 100644 (file)
@@ -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);
 
 /**