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:
Wim Taymans 2010-06-25 18:18:55 +02:00
parent ea82d2d72a
commit d4e1fdb0c7

View file

@ -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;
/**