playbin: rename GType of stream selector pad to avoid clash with input-selector from -bad

Rename the GType of the pads of playbin's internal stream selector
element so they don't use the same type name as input-selector's
pads. Fixes #589622.
This commit is contained in:
Tim-Philipp Müller 2009-07-24 19:26:40 +01:00
parent 29235e7099
commit 789f5b0488

View file

@ -143,7 +143,7 @@ gst_selector_pad_get_type (void)
};
selector_pad_type =
g_type_register_static (GST_TYPE_PAD, "GstSelectorPad",
g_type_register_static (GST_TYPE_PAD, "GstPlaybinSelectorPad",
&selector_pad_info, 0);
}
return selector_pad_type;