overlaycomposition: 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-base/-/merge_requests/1029>
This commit is contained in:
Stéphane Cerveau 2021-02-11 10:49:48 +01:00 committed by GStreamer Marge Bot
parent 4e9520ab34
commit a3875c7d02
2 changed files with 5 additions and 2 deletions

View file

@ -84,6 +84,8 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
#define parent_class gst_overlay_composition_parent_class
G_DEFINE_TYPE (GstOverlayComposition, gst_overlay_composition,
GST_TYPE_ELEMENT);
GST_ELEMENT_REGISTER_DEFINE (overlaycomposition, "overlaycomposition",
GST_RANK_NONE, GST_TYPE_OVERLAY_COMPOSITION);
static GstFlowReturn gst_overlay_composition_sink_chain (GstPad * pad,
GstObject * parent, GstBuffer * buffer);
@ -774,8 +776,7 @@ map_failed:
static gboolean
plugin_init (GstPlugin * plugin)
{
return gst_element_register (plugin, "overlaycomposition", GST_RANK_NONE,
GST_TYPE_OVERLAY_COMPOSITION);
return GST_ELEMENT_REGISTER (overlaycomposition, plugin);
}
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,

View file

@ -43,6 +43,8 @@ struct _GstOverlayComposition {
gboolean attach_compo_to_buffer;
};
GST_ELEMENT_REGISTER_DECLARE (overlaycomposition);
G_END_DECLS
#endif /* __GST_OVERLAY_COMPOSITION_H__ */