auparse: allow per feature registration

Split plugin into features including
dynamic types which can be indiviually
registered during a static build.

More details here:

https://gitlab.freedesktop.org/gstreamer/gst-build/-/merge_requests/199
https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/661

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-good/-/merge_requests/876>
This commit is contained in:
Stéphane Cerveau 2021-02-16 15:56:35 +01:00
parent b20209ce0d
commit 8dedf47997
2 changed files with 5 additions and 3 deletions

View file

@ -103,6 +103,8 @@ static gboolean gst_au_parse_src_convert (GstAuParse * auparse,
#define gst_au_parse_parent_class parent_class
G_DEFINE_TYPE (GstAuParse, gst_au_parse, GST_TYPE_ELEMENT);
GST_ELEMENT_REGISTER_DEFINE (auparse, "auparse", GST_RANK_SECONDARY,
GST_TYPE_AU_PARSE);
static void
gst_au_parse_class_init (GstAuParseClass * klass)
@ -797,10 +799,8 @@ gst_au_parse_change_state (GstElement * element, GstStateChange transition)
static gboolean
plugin_init (GstPlugin * plugin)
{
if (!gst_element_register (plugin, "auparse", GST_RANK_SECONDARY,
GST_TYPE_AU_PARSE)) {
if (!GST_ELEMENT_REGISTER (auparse, plugin))
return FALSE;
}
return TRUE;
}

View file

@ -70,6 +70,8 @@ struct _GstAuParseClass {
GType gst_au_parse_get_type (void);
GST_ELEMENT_REGISTER_DECLARE (auparse);
G_END_DECLS
#endif /* __GST_AU_PARSE_H__ */