overlaycomposition: allow per feature registration
authorStéphane Cerveau <scerveau@collabora.com>
Thu, 11 Feb 2021 09:49:48 +0000 (10:49 +0100)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Tue, 16 Mar 2021 17:58:59 +0000 (17:58 +0000)
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>

gst/overlaycomposition/gstoverlaycomposition.c
gst/overlaycomposition/gstoverlaycomposition.h

index af38691..b58a84d 100644 (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,
index 6374a0c..cc92f98 100644 (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__ */