docs: add two trivial doc blobs
authorStefan Kost <ensonic@users.sf.net>
Mon, 2 May 2011 13:20:24 +0000 (16:20 +0300)
committerStefan Kost <ensonic@users.sf.net>
Tue, 3 May 2011 10:03:21 +0000 (13:03 +0300)
gst/gstelement.h
gst/gstpluginfeature.h

index 622f05f..74f05dd 100644 (file)
@@ -722,6 +722,8 @@ GType                   gst_element_get_type            (void);
  * gst_element_get_parent:
  * @elem: a #GstElement to get the parent of.
  *
+ * Get the parent of an element.
+ *
  * Returns: (transfer full): the parent of an element.
  */
 #define                 gst_element_get_parent(elem)    gst_object_get_parent(GST_OBJECT_CAST(elem))
index c24be4f..abfebe2 100644 (file)
@@ -142,6 +142,15 @@ void            gst_plugin_feature_list_free            (GList *list);
 GList          *gst_plugin_feature_list_copy            (GList *list);
 void            gst_plugin_feature_list_debug           (GList *list);
 
+/**
+ * GST_PLUGIN_FEATURE_LIST_DEBUG:
+ * @list: (transfer none) (element-type Gst.PluginFeature): a #GList of
+ *     plugin features
+ *
+ * Debug the plugin feature names in @list.
+ *
+ * Since: 0.10.31
+ */
 #ifndef GST_DISABLE_GST_DEBUG
 #define GST_PLUGIN_FEATURE_LIST_DEBUG(list) gst_plugin_feature_list_debug(list)
 #else