mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 05:28:48 +00:00
camerabin: Remove useless src template pad
camerabin imagebin doesn't need a src template pad.
This commit is contained in:
parent
9c3692cc4f
commit
5355a3efd7
1 changed files with 0 additions and 7 deletions
|
@ -91,11 +91,6 @@ static GstStaticPadTemplate sink_template = GST_STATIC_PAD_TEMPLATE ("sink",
|
|||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS_ANY);
|
||||
|
||||
static GstStaticPadTemplate src_template = GST_STATIC_PAD_TEMPLATE ("src",
|
||||
GST_PAD_SRC,
|
||||
GST_PAD_ALWAYS,
|
||||
GST_STATIC_CAPS_ANY);
|
||||
|
||||
static void
|
||||
gst_camerabin_image_base_init (gpointer klass)
|
||||
{
|
||||
|
@ -103,8 +98,6 @@ gst_camerabin_image_base_init (gpointer klass)
|
|||
|
||||
gst_element_class_add_pad_template (eklass,
|
||||
gst_static_pad_template_get (&sink_template));
|
||||
gst_element_class_add_pad_template (eklass,
|
||||
gst_static_pad_template_get (&src_template));
|
||||
gst_element_class_set_details_simple (eklass,
|
||||
"Image capture bin for camerabin", "Bin/Image",
|
||||
"Process and store image data",
|
||||
|
|
Loading…
Reference in a new issue