docs: document that gst_byte_writer_put_string*() writes the terminator too
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Sun, 2 May 2010 23:26:04 +0000 (00:26 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 5 May 2010 15:34:47 +0000 (16:34 +0100)
libs/gst/base/gstbytewriter.c
libs/gst/base/gstbytewriter.h

index 2ccd1d4..99e0b55 100644 (file)
@@ -781,7 +781,7 @@ CREATE_WRITE_STRING_FUNC (32, guint32);
  * @writer: #GstByteWriter instance
  * @data: UTF8 string to write
  *
- * Writes a null-terminated UTF8 string to @writer.
+ * Writes a NUL-terminated UTF8 string to @writer (including the terminator).
  *
  * Returns: %TRUE if the value could be written
  *
@@ -792,7 +792,7 @@ CREATE_WRITE_STRING_FUNC (32, guint32);
  * @writer: #GstByteWriter instance
  * @data: UTF16 string to write
  *
- * Writes a null-terminated UTF16 string to @writer.
+ * Writes a NUL-terminated UTF16 string to @writer (including the terminator).
  *
  * Returns: %TRUE if the value could be written
  *
@@ -803,7 +803,7 @@ CREATE_WRITE_STRING_FUNC (32, guint32);
  * @writer: #GstByteWriter instance
  * @data: UTF32 string to write
  *
- * Writes a null-terminated UTF32 string to @writer.
+ * Writes a NUL-terminated UTF32 string to @writer (including the terminator).
  *
  * Returns: %TRUE if the value could be written
  *
index d81f7de..743e9db 100644 (file)
@@ -154,7 +154,9 @@ gboolean gst_byte_writer_put_string_utf32 (GstByteWriter *writer, const guint32
  * @writer: #GstByteWriter instance
  * @data: Null terminated string
  *
- * Write a null-terminated string to @writer.
+ * Write a NUL-terminated string to @writer (including the terminator). The
+ * string is assumed to be in an 8-bit encoding (e.g. ASCII,UTF-8 or
+ * ISO-8859-1).
  *
  * Returns: %TRUE if the string could be written
  *