mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-17 11:45:25 +00:00
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:
parent
4e9520ab34
commit
a3875c7d02
2 changed files with 5 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -43,6 +43,8 @@ struct _GstOverlayComposition {
|
|||
gboolean attach_compo_to_buffer;
|
||||
};
|
||||
|
||||
GST_ELEMENT_REGISTER_DECLARE (overlaycomposition);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GST_OVERLAY_COMPOSITION_H__ */
|
||||
|
|
Loading…
Reference in a new issue