mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-01 20:12:28 +00:00
Also don't add properties of GstBin and GstPipeline to element bindings
This commit is contained in:
parent
e076c092d8
commit
3d6d0b2496
1 changed files with 4 additions and 2 deletions
|
@ -242,9 +242,11 @@ print_element_properties (GstElement * element, gint pfx)
|
|||
readable = TRUE;
|
||||
}
|
||||
|
||||
/* Ignore GstObject, GstElement properties */
|
||||
/* Ignore GstObject, GstElement, GstBin, GstPipeline properties */
|
||||
if (param->owner_type == GST_TYPE_OBJECT ||
|
||||
param->owner_type == GST_TYPE_ELEMENT)
|
||||
param->owner_type == GST_TYPE_ELEMENT ||
|
||||
param->owner_type == GST_TYPE_BIN ||
|
||||
param->owner_type == GST_TYPE_PIPELINE)
|
||||
continue;
|
||||
|
||||
PUT_START_TAG (pfx + 1, "element-property");
|
||||
|
|
Loading…
Reference in a new issue