mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-23 15:48:23 +00:00
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: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-base/-/merge_requests/1029>
This commit is contained in:
parent
a3875c7d02
commit
aa230852ba
2 changed files with 5 additions and 2 deletions
|
@ -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,
|
||||
|
|
|
@ -54,6 +54,8 @@ struct _GstVideoConvert {
|
|||
gint n_threads;
|
||||
};
|
||||
|
||||
GST_ELEMENT_REGISTER_DECLARE (videoconvert);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
#endif /* __GST_VIDEOCONVERT_H__ */
|
||||
|
|
Loading…
Reference in a new issue