Element.typeSetSkipDocumentation
void typeSetSkipDocumentation(gobject.types.GType type)Marks type as "documentation should be skipped". Can be useful for dynamically registered element to be excluded from plugin documentation system.
Example:
GType my_type;
GTypeInfo my_type_info;
// Fill "my_type_info"
...
my_type = g_type_register_static (GST_TYPE_MY_ELEMENT, "my-type-name",
&my_type_info, 0);
gst_element_type_set_skip_documentation (my_type);
gst_element_register (plugin, "my-plugin-feature-name", rank, my_type);Parameters
type | a #GType of element |