mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
docs: add two trivial doc blobs
This commit is contained in:
parent
217b209aba
commit
c45ff2b12a
2 changed files with 11 additions and 0 deletions
|
@ -722,6 +722,8 @@ GType gst_element_get_type (void);
|
||||||
* gst_element_get_parent:
|
* gst_element_get_parent:
|
||||||
* @elem: a #GstElement to get the parent of.
|
* @elem: a #GstElement to get the parent of.
|
||||||
*
|
*
|
||||||
|
* Get the parent of an element.
|
||||||
|
*
|
||||||
* Returns: (transfer full): 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))
|
#define gst_element_get_parent(elem) gst_object_get_parent(GST_OBJECT_CAST(elem))
|
||||||
|
|
|
@ -142,6 +142,15 @@ void gst_plugin_feature_list_free (GList *list);
|
||||||
GList *gst_plugin_feature_list_copy (GList *list);
|
GList *gst_plugin_feature_list_copy (GList *list);
|
||||||
void gst_plugin_feature_list_debug (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
|
#ifndef GST_DISABLE_GST_DEBUG
|
||||||
#define GST_PLUGIN_FEATURE_LIST_DEBUG(list) gst_plugin_feature_list_debug(list)
|
#define GST_PLUGIN_FEATURE_LIST_DEBUG(list) gst_plugin_feature_list_debug(list)
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Reference in a new issue