mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
icydemux: 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
7cc7518b19
commit
6db40c9140
2 changed files with 8 additions and 5 deletions
|
@ -87,7 +87,11 @@ static gboolean gst_icydemux_send_tag_event (GstICYDemux * icydemux,
|
|||
|
||||
#define gst_icydemux_parent_class parent_class
|
||||
G_DEFINE_TYPE (GstICYDemux, gst_icydemux, GST_TYPE_ELEMENT);
|
||||
|
||||
GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (icydemux, "icydemux",
|
||||
GST_RANK_PRIMARY, GST_TYPE_ICYDEMUX,
|
||||
GST_DEBUG_CATEGORY_INIT (icydemux_debug, "icydemux", 0,
|
||||
"GStreamer ICY tag demuxer");
|
||||
);
|
||||
static void
|
||||
gst_icydemux_class_init (GstICYDemuxClass * klass)
|
||||
{
|
||||
|
@ -662,11 +666,8 @@ gst_icydemux_send_tag_event (GstICYDemux * icydemux, GstTagList * tags)
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
GST_DEBUG_CATEGORY_INIT (icydemux_debug, "icydemux", 0,
|
||||
"GStreamer ICY tag demuxer");
|
||||
return GST_ELEMENT_REGISTER (icydemux, plugin);
|
||||
|
||||
return gst_element_register (plugin, "icydemux",
|
||||
GST_RANK_PRIMARY, GST_TYPE_ICYDEMUX);
|
||||
}
|
||||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
|
|
|
@ -82,6 +82,8 @@ struct _GstICYDemuxClass
|
|||
|
||||
GType gst_icydemux_get_type (void);
|
||||
|
||||
GST_ELEMENT_REGISTER_DECLARE (icydemux);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GST_ICYDEMUX_H__ */
|
||||
|
|
Loading…
Reference in a new issue