From a176f1a70f024108293c06aef95cbd3c0a03373f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Mon, 29 Mar 2021 14:07:00 +0200 Subject: [PATCH] audiotestsrc: 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/audiotestsrc/gstaudiotestsrc.c | 10 +++++----- gst/audiotestsrc/gstaudiotestsrc.h | 2 ++ 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/gst/audiotestsrc/gstaudiotestsrc.c b/gst/audiotestsrc/gstaudiotestsrc.c index 032dc9fd0d..b8554ed16a 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.c +++ b/gst/audiotestsrc/gstaudiotestsrc.c @@ -154,6 +154,10 @@ GST_STATIC_PAD_TEMPLATE ("src", #define gst_audio_test_src_parent_class parent_class G_DEFINE_TYPE (GstAudioTestSrc, gst_audio_test_src, GST_TYPE_BASE_SRC); +GST_ELEMENT_REGISTER_DEFINE_WITH_CODE (audiotestsrc, "audiotestsrc", + GST_RANK_NONE, GST_TYPE_AUDIO_TEST_SRC, + GST_DEBUG_CATEGORY_INIT (audio_test_src_debug, "audiotestsrc", 0, + "Audio Test Source")); #define GST_TYPE_AUDIO_TEST_SRC_WAVE (gst_audiostestsrc_wave_get_type()) static GType @@ -1679,11 +1683,7 @@ gst_audio_test_src_get_property (GObject * object, guint prop_id, static gboolean plugin_init (GstPlugin * plugin) { - GST_DEBUG_CATEGORY_INIT (audio_test_src_debug, "audiotestsrc", 0, - "Audio Test Source"); - - return gst_element_register (plugin, "audiotestsrc", - GST_RANK_NONE, GST_TYPE_AUDIO_TEST_SRC); + return GST_ELEMENT_REGISTER (audiotestsrc, plugin); } GST_PLUGIN_DEFINE (GST_VERSION_MAJOR, diff --git a/gst/audiotestsrc/gstaudiotestsrc.h b/gst/audiotestsrc/gstaudiotestsrc.h index 96e00900b5..cea3e52077 100644 --- a/gst/audiotestsrc/gstaudiotestsrc.h +++ b/gst/audiotestsrc/gstaudiotestsrc.h @@ -135,6 +135,8 @@ struct _GstAudioTestSrc { guint tick_counter; }; +GST_ELEMENT_REGISTER_DECLARE (audiotestsrc); + G_END_DECLS #endif /* __GST_AUDIO_TEST_SRC_H__ */