base: add some missing introspection annotations
authorEvan Nemerson <evan@coeus-group.com>
Wed, 20 Jun 2012 01:41:04 +0000 (18:41 -0700)
committerEvan Nemerson <evan@coeus-group.com>
Wed, 20 Jun 2012 01:41:04 +0000 (18:41 -0700)
libs/gst/base/gstbitreader.c
libs/gst/base/gstbitreader.h
libs/gst/base/gstbytereader.h
libs/gst/base/gstbytewriter.c

index 271424a..3dcb867 100644 (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.
index 5233612..ab63829 100644 (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
index 2accb10..6984e67 100644 (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
  *
index ba100aa..b0760c9 100644 (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
  */