voamrwbenc: allow per feature registration
authorStéphane Cerveau <scerveau@collabora.com>
Wed, 24 Feb 2021 16:34:50 +0000 (17:34 +0100)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Tue, 23 Mar 2021 14:19:17 +0000 (14:19 +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-bad/-/merge_requests/2038>

ext/voamrwbenc/gstvoamrwb.c
ext/voamrwbenc/gstvoamrwbenc.c
ext/voamrwbenc/gstvoamrwbenc.h

index 48501c3..eb447a1 100644 (file)
 static gboolean
 plugin_init (GstPlugin * plugin)
 {
-  return gst_element_register (plugin, "voamrwbenc",
-      GST_RANK_SECONDARY, GST_TYPE_VOAMRWBENC);
+  return GST_ELEMENT_REGISTER (voamrwbenc, plugin);
 }
 
-
 GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
     GST_VERSION_MINOR,
     voamrwbenc,
index 3e4eff0..f48ac09 100644 (file)
@@ -115,6 +115,8 @@ static GstFlowReturn gst_voamrwbenc_handle_frame (GstAudioEncoder * enc,
     GstBuffer * in_buf);
 
 G_DEFINE_TYPE (GstVoAmrWbEnc, gst_voamrwbenc, GST_TYPE_AUDIO_ENCODER);
+GST_ELEMENT_REGISTER_DEFINE (voamrwbenc, "voamrwbenc",
+    GST_RANK_SECONDARY, GST_TYPE_VOAMRWBENC);
 
 static void
 gst_voamrwbenc_set_property (GObject * object, guint prop_id,
index 2b71986..a5a19dd 100644 (file)
@@ -58,6 +58,8 @@ struct _GstVoAmrWbEncClass {
 
 GType gst_voamrwbenc_get_type (void);
 
+GST_ELEMENT_REGISTER_DECLARE (voamrwbenc);
+
 G_END_DECLS
 
 #endif /* __GST_VOAMRWBENC_H__ */