X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=libs%2Fgst%2Fbase%2Fgstbytereader.c;h=baa152fd1dfef76ed85925bbff1c2caceff8d3a7;hb=a87b4551a6090663a1714f263d4e20fe75eb46ca;hp=8a7e35da48c0ed753ea9cbdc43d9497333be75a5;hpb=2f1c87094e0ea0a1e65f4b2d2837eb6001d67212;p=platform%2Fupstream%2Fgstreamer.git diff --git a/libs/gst/base/gstbytereader.c b/libs/gst/base/gstbytereader.c index 8a7e35d..baa152f 100644 --- a/libs/gst/base/gstbytereader.c +++ b/libs/gst/base/gstbytereader.c @@ -30,6 +30,7 @@ /** * SECTION:gstbytereader + * @title: GstByteReader * @short_description: Reads different integer, string and floating point * types from a memory buffer * @@ -769,7 +770,6 @@ GST_BYTE_READER_PEEK_GET(64,gdouble,float64_be) * position if at least @size bytes are left and * updates the current position. * - * * Returns: %TRUE if successful, %FALSE otherwise. */ gboolean @@ -790,7 +790,6 @@ gst_byte_reader_get_data (GstByteReader * reader, guint size, * position if at least @size bytes are left and * keeps the current position. * - * * Returns: %TRUE if successful, %FALSE otherwise. */ gboolean @@ -916,7 +915,7 @@ _masked_scan_uint32_peek (const GstByteReader * reader, * Returns: offset of the first match, or -1 if no match was found. * * Example: - * + * |[ * // Assume the reader contains 0x00 0x01 0x02 ... 0xfe 0xff * * gst_byte_reader_masked_scan_uint32 (reader, 0xffffffff, 0x00010203, 0, 256); @@ -933,7 +932,7 @@ _masked_scan_uint32_peek (const GstByteReader * reader, * // -> returns 2 * gst_byte_reader_masked_scan_uint32 (reader, 0xffff0000, 0x02030000, 0, 4); * // -> returns -1 - * + * ]| */ guint gst_byte_reader_masked_scan_uint32 (const GstByteReader * reader, guint32 mask,