base: add some missing introspection annotations

This commit is contained in:
Evan Nemerson 2012-06-19 18:41:04 -07:00
parent 870d631f51
commit 2c1c1032fa
4 changed files with 8 additions and 4 deletions

View file

@ -38,7 +38,8 @@
/**
* gst_bit_reader_new:
* @data: Data from which the #GstBitReader should read
* @data: (array length=size): Data from which the #GstBitReader
* should read
* @size: Size of @data in bytes
*
* Create a new #GstBitReader instance, which will read from @data.

View file

@ -31,7 +31,8 @@ G_BEGIN_DECLS
/**
* GstBitReader:
* @data: Data from which the bit reader will read
* @data: (array length=size): Data from which the bit reader will
* read
* @size: Size of @data in bytes
* @byte: Current byte position
* @bit: Bit position in the current byte

View file

@ -30,7 +30,8 @@ G_BEGIN_DECLS
/**
* GstByteReader:
* @data: Data from which the bit reader will read
* @data: (array length=size): Data from which the bit reader will
* read
* @size: Size of @data in bytes
* @byte: Current byte position
*

View file

@ -212,7 +212,8 @@ gst_byte_writer_reset (GstByteWriter * writer)
*
* Free-function: g_free
*
* Returns: (transfer full): the current data. g_free() after usage.
* Returns: (array) (transfer full): the current data. g_free() after
* usage.
*
* Since: 0.10.26
*/