mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
[MOVED FROM GST-P-FARSIGHT] Remove useless implementation of getcaps from mimdec
20080704220318-3e2dc-d81bc59b2308c5ad0d3144030c5650295e99f3c6.gz
This commit is contained in:
parent
c57073ea3d
commit
6c6a95130b
1 changed files with 0 additions and 15 deletions
|
@ -63,8 +63,6 @@ static void gst_mimdec_finalize (GObject *object);
|
|||
|
||||
static GstFlowReturn gst_mimdec_chain (GstPad *pad,
|
||||
GstBuffer *in);
|
||||
static GstCaps *gst_mimdec_src_getcaps (GstPad *pad);
|
||||
|
||||
static GstStateChangeReturn
|
||||
gst_mimdec_change_state (GstElement *element,
|
||||
GstStateChange transition);
|
||||
|
@ -119,7 +117,6 @@ gst_mimdec_init (GstMimDec *mimdec, GstMimDecClass *klass)
|
|||
|
||||
mimdec->srcpad = gst_pad_new_from_template (
|
||||
gst_static_pad_template_get (&src_factory), "src");
|
||||
gst_pad_set_getcaps_function (mimdec->srcpad, gst_mimdec_src_getcaps);
|
||||
gst_element_add_pad (GST_ELEMENT (mimdec), mimdec->srcpad);
|
||||
|
||||
mimdec->adapter = gst_adapter_new ();
|
||||
|
@ -344,15 +341,3 @@ gst_mimdec_change_state (GstElement *element, GstStateChange transition)
|
|||
|
||||
return GST_ELEMENT_CLASS (parent_class)->change_state (element, transition);
|
||||
}
|
||||
|
||||
static GstCaps *
|
||||
gst_mimdec_src_getcaps (GstPad *pad)
|
||||
{
|
||||
GstCaps *caps;
|
||||
|
||||
if (!(caps = GST_PAD_CAPS (pad)))
|
||||
caps = (GstCaps *) gst_pad_get_pad_template_caps (pad);
|
||||
caps = gst_caps_ref (caps);
|
||||
|
||||
return caps;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue