From: Thiago Santos Date: Wed, 4 Aug 2010 16:47:23 +0000 (-0300) Subject: bytereader: Fix docs X-Git-Tag: RELEASE-0.10.31~260 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b99e2e2dc4e7f80d145aba415e1b7d375b5cbb7;p=platform%2Fupstream%2Fgstreamer.git bytereader: Fix docs Fix typo in docs for the unsigned peek functions --- diff --git a/libs/gst/base/gstbytereader.c b/libs/gst/base/gstbytereader.c index 7a02cc2..a97098f 100644 --- a/libs/gst/base/gstbytereader.c +++ b/libs/gst/base/gstbytereader.c @@ -271,7 +271,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint8 to store the result * - * Read a signed 8 bit integer into @val but keep the current position. + * Read an unsigned 8 bit integer into @val but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. * @@ -321,7 +321,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint16 to store the result * - * Read a signed 16 bit little endian integer into @val + * Read an unsigned 16 bit little endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. @@ -373,7 +373,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint16 to store the result * - * Read a signed 16 bit big endian integer into @val + * Read an unsigned 16 bit big endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. @@ -425,7 +425,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint32 to store the result * - * Read a signed 24 bit little endian integer into @val + * Read an unsigned 24 bit little endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. @@ -477,7 +477,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint32 to store the result * - * Read a signed 24 bit big endian integer into @val + * Read an unsigned 24 bit big endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. @@ -530,7 +530,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint32 to store the result * - * Read a signed 32 bit little endian integer into @val + * Read an unsigned 32 bit little endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. @@ -582,7 +582,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint32 to store the result * - * Read a signed 32 bit big endian integer into @val + * Read an unsigned 32 bit big endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. @@ -634,7 +634,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint64 to store the result * - * Read a signed 64 bit little endian integer into @val + * Read an unsigned 64 bit little endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise. @@ -686,7 +686,7 @@ gst_byte_reader_skip (GstByteReader * reader, guint nbytes) * @reader: a #GstByteReader instance * @val: Pointer to a #guint64 to store the result * - * Read a signed 64 bit big endian integer into @val + * Read an unsigned 64 bit big endian integer into @val * but keep the current position. * * Returns: %TRUE if successful, %FALSE otherwise.