From aa230852ba63a0cb83bc70f518aebef430e08315 Mon Sep 17 00:00:00 2001 From: =?utf8?q?St=C3=A9phane=20Cerveau?= Date: Thu, 11 Feb 2021 10:55:25 +0100 Subject: [PATCH] videoconvert: 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: --- gst/videoconvert/gstvideoconvert.c | 5 +++-- gst/videoconvert/gstvideoconvert.h | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gst/videoconvert/gstvideoconvert.c b/gst/videoconvert/gstvideoconvert.c index 749e86f..0f65ee2 100644 --- a/gst/videoconvert/gstvideoconvert.c +++ b/gst/videoconvert/gstvideoconvert.c @@ -56,6 +56,8 @@ static GQuark _colorspace_quark; #define gst_video_convert_parent_class parent_class G_DEFINE_TYPE (GstVideoConvert, gst_video_convert, GST_TYPE_VIDEO_FILTER); +GST_ELEMENT_REGISTER_DEFINE (videoconvert, "videoconvert", + GST_RANK_NONE, GST_TYPE_VIDEO_CONVERT); #define DEFAULT_PROP_DITHER GST_VIDEO_DITHER_BAYER #define DEFAULT_PROP_DITHER_QUANTIZATION 1 @@ -859,8 +861,7 @@ plugin_init (GstPlugin * plugin) gst_caps_features_add (features_format_interlaced_sysmem, GST_CAPS_FEATURE_MEMORY_SYSTEM_MEMORY); - return gst_element_register (plugin, "videoconvert", - GST_RANK_NONE, GST_TYPE_VIDEO_CONVERT); + return GST_ELEMENT_REGISTER (videoconvert, plugin); } GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, diff --git a/gst/videoconvert/gstvideoconvert.h b/gst/videoconvert/gstvideoconvert.h index 875c9ce..0f093f4 100644 --- a/gst/videoconvert/gstvideoconvert.h +++ b/gst/videoconvert/gstvideoconvert.h @@ -54,6 +54,8 @@ struct _GstVideoConvert { gint n_threads; }; +GST_ELEMENT_REGISTER_DECLARE (videoconvert); + G_END_DECLS #endif /* __GST_VIDEOCONVERT_H__ */ -- 2.7.4