docs: minor gtk-doc markup fixes
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 20 Jan 2010 01:33:38 +0000 (01:33 +0000)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Wed, 20 Jan 2010 01:48:56 +0000 (01:48 +0000)
docs/plugins/gstreamer-plugins-sections.txt
plugins/elements/gstmultiqueue.c
plugins/elements/gstqueue2.c

index ac16702..6f80cc5 100644 (file)
@@ -197,6 +197,7 @@ GstTeePullMode
 <SUBSECTION Standard>
 GstTeeClass
 GST_TEE
+GST_TEE_CAST
 GST_IS_TEE
 GST_TYPE_TEE
 GST_TEE_CLASS
index 81d8d1e..0b8439c 100644 (file)
@@ -34,8 +34,8 @@
  *   <itemizedlist><title>Multiple streamhandling</title>
  *   <listitem><para>
  *     The element handles queueing data on more than one stream at once. To
- *     achieve such a feature it has request sink pads (sink%d) and
- *     'sometimes' src pads (src%d).
+ *     achieve such a feature it has request sink pads (sink&percnt;d) and
+ *     'sometimes' src pads (src&percnt;d).
  *   </para><para>
  *     When requesting a given sinkpad with gst_element_get_request_pad(),
  *     the associated srcpad for that stream will be created.
index 52fd637..05b4b80 100644 (file)
@@ -27,8 +27,8 @@
  * @short_description: Asynchronous data queue.
  *
  * Data is queued until one of the limits specified by the
- * #GstQueue22:max-size-buffers, #GstQueue22:max-size-bytes and/or
- * #GstQueue22:max-size-time properties has been reached. Any attempt to push
+ * #GstQueue2:max-size-buffers, #GstQueue2:max-size-bytes and/or
+ * #GstQueue2:max-size-time properties has been reached. Any attempt to push
  * more buffers into the queue will block the pushing thread until more space
  * becomes available.
  *
@@ -36,7 +36,7 @@
  * processing on sink and source pad.
  *
  * You can query how many buffers are queued by reading the
- * #GstQueue22:current-level-buffers property.
+ * #GstQueue2:current-level-buffers property.
  *
  * The default queue size limits are 100 buffers, 2MB of data, or
  * two seconds worth of data, whichever is reached first.