mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-09 17:44:14 +00:00
pad: make the NOTHING link check flag be 0
Make the pad link check of NOTHING be 0. This way we have a flag for each feature and 0 when no flags are set.
This commit is contained in:
parent
ea82d2d72a
commit
d4e1fdb0c7
1 changed files with 4 additions and 4 deletions
|
@ -191,10 +191,10 @@ GQuark gst_flow_to_quark (GstFlowReturn ret);
|
|||
*/
|
||||
|
||||
typedef enum {
|
||||
GST_PAD_LINK_CHECK_NOTHING = 1 << 0,
|
||||
GST_PAD_LINK_CHECK_HIERARCHY = 1 << 1,
|
||||
GST_PAD_LINK_CHECK_TEMPLATE_CAPS = 1 << 2,
|
||||
GST_PAD_LINK_CHECK_CAPS = 1 << 3,
|
||||
GST_PAD_LINK_CHECK_NOTHING = 0,
|
||||
GST_PAD_LINK_CHECK_HIERARCHY = 1 << 0,
|
||||
GST_PAD_LINK_CHECK_TEMPLATE_CAPS = 1 << 1,
|
||||
GST_PAD_LINK_CHECK_CAPS = 1 << 2,
|
||||
} GstPadLinkCheck;
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue