changeset 9407:0129a71aae90 libavcodec

Document ff_put_string().
author stefano
date Sat, 11 Apr 2009 21:01:30 +0000
parents 8d51b340393e
children e74131a0652d
files bitstream.h
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/bitstream.h	Sat Apr 11 18:12:23 2009 +0000
+++ b/bitstream.h	Sat Apr 11 21:01:30 2009 +0000
@@ -159,6 +159,12 @@
  * 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);
 
 /**