mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-04 23:30:05 +00:00
dc1394: 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-bad/-/merge_requests/2038>
This commit is contained in:
parent
8864382897
commit
447ea8372e
2 changed files with 8 additions and 6 deletions
|
@ -87,7 +87,11 @@ gst_dc1394_iso_speed_get_type (void)
|
|||
|
||||
|
||||
#define gst_dc1394_src_parent_class parent_class
|
||||
G_DEFINE_TYPE (GstDC1394Src, gst_dc1394_src, GST_TYPE_PUSH_SRC);
|
||||
G_DEFINE_TYPE_WITH_CODE (GstDC1394Src, gst_dc1394_src, GST_TYPE_PUSH_SRC,
|
||||
GST_DEBUG_CATEGORY_INIT (dc1394_debug, "dc1394", 0, "DC1394 interface");
|
||||
);
|
||||
GST_ELEMENT_REGISTER_DEFINE (dc1394src, "dc1394src", GST_RANK_NONE,
|
||||
GST_TYPE_DC1394_SRC);
|
||||
|
||||
static void gst_dc1394_src_set_property (GObject * object, guint prop_id,
|
||||
const GValue * value, GParamSpec * pspec);
|
||||
|
@ -1229,13 +1233,9 @@ error:
|
|||
static gboolean
|
||||
plugin_init (GstPlugin * plugin)
|
||||
{
|
||||
GST_DEBUG_CATEGORY_INIT (dc1394_debug, "dc1394", 0, "DC1394 interface");
|
||||
|
||||
return gst_element_register (plugin, "dc1394src", GST_RANK_NONE,
|
||||
GST_TYPE_DC1394_SRC);
|
||||
return GST_ELEMENT_REGISTER (dc1394src, plugin);
|
||||
}
|
||||
|
||||
|
||||
GST_PLUGIN_DEFINE (GST_VERSION_MAJOR,
|
||||
GST_VERSION_MINOR,
|
||||
dc1394,
|
||||
|
|
|
@ -55,6 +55,8 @@ struct _GstDC1394SrcClass {
|
|||
|
||||
GType gst_dc1394_src_get_type (void);
|
||||
|
||||
GST_ELEMENT_REGISTER_DECLARE (dc1394src);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GST_DC1394_H__ */
|
||||
|
|
Loading…
Reference in a new issue