Module: Gst::PadLinkCheck
- Defined in:
- (unknown)
Constant Summary collapse
- NOTHING =
Don't check hierarchy or caps compatibility.
0 or :nothing
- HIERARCHY =
Check the pads have same parents/grandparents. Could be omitted if it is already known that the two elements that own the pads are in the same bin.
1 or :hierarchy
- TEMPLATE_CAPS =
Check if the pads are compatible by using their template caps. This is much faster than GST_PAD_LINK_CHECK_CAPS, but would be unsafe e.g. if one pad has %GST_CAPS_ANY.
2 or :template_caps
- CAPS =
Check if the pads are compatible by comparing the caps returned by gst_pad_query_caps().
4 or :caps
- NO_RECONFIGURE =
Disables pushing a reconfigure event when pads are linked.
8 or :no_reconfigure
- DEFAULT =
The default checks done when linking pads (i.e. the ones used by gst_pad_link()).
5 or :default