mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
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:
parent
b20209ce0d
commit
8dedf47997
2 changed files with 5 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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__ */
|
||||
|
|
Loading…
Reference in a new issue