camerabin: Remove useless src template pad

camerabin imagebin doesn't need a src template pad.
This commit is contained in:
Thiago Santos 2010-06-28 21:48:26 -03:00
parent 9c3692cc4f
commit 5355a3efd7

View file

@ -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",