mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
deinterleave: implement a caps query handler for the sinkpad
It was missing and apparently code relied on having it there for not allowing a change in the number of channels
This commit is contained in:
parent
ad5bc461c8
commit
74c05502f7
1 changed files with 31 additions and 3 deletions
|
@ -134,6 +134,8 @@ gst_deinterleave_change_state (GstElement * element, GstStateChange transition);
|
||||||
|
|
||||||
static gboolean gst_deinterleave_sink_event (GstPad * pad, GstObject * parent,
|
static gboolean gst_deinterleave_sink_event (GstPad * pad, GstObject * parent,
|
||||||
GstEvent * event);
|
GstEvent * event);
|
||||||
|
static gboolean gst_deinterleave_sink_query (GstPad * pad, GstObject * parent,
|
||||||
|
GstQuery * query);
|
||||||
|
|
||||||
static gboolean gst_deinterleave_src_query (GstPad * pad, GstObject * parent,
|
static gboolean gst_deinterleave_src_query (GstPad * pad, GstObject * parent,
|
||||||
GstQuery * query);
|
GstQuery * query);
|
||||||
|
@ -212,6 +214,8 @@ gst_deinterleave_init (GstDeinterleave * self)
|
||||||
GST_DEBUG_FUNCPTR (gst_deinterleave_chain));
|
GST_DEBUG_FUNCPTR (gst_deinterleave_chain));
|
||||||
gst_pad_set_event_function (self->sink,
|
gst_pad_set_event_function (self->sink,
|
||||||
GST_DEBUG_FUNCPTR (gst_deinterleave_sink_event));
|
GST_DEBUG_FUNCPTR (gst_deinterleave_sink_event));
|
||||||
|
gst_pad_set_query_function (self->sink,
|
||||||
|
GST_DEBUG_FUNCPTR (gst_deinterleave_sink_query));
|
||||||
gst_element_add_pad (GST_ELEMENT (self), self->sink);
|
gst_element_add_pad (GST_ELEMENT (self), self->sink);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -501,8 +505,7 @@ __set_channels (GstCaps * caps, gint channels)
|
||||||
}
|
}
|
||||||
|
|
||||||
static GstCaps *
|
static GstCaps *
|
||||||
gst_deinterleave_sink_getcaps (GstPad * pad, GstObject * parent,
|
gst_deinterleave_getcaps (GstPad * pad, GstObject * parent, GstCaps * filter)
|
||||||
GstCaps * filter)
|
|
||||||
{
|
{
|
||||||
GstDeinterleave *self = GST_DEINTERLEAVE (parent);
|
GstDeinterleave *self = GST_DEINTERLEAVE (parent);
|
||||||
GstCaps *ret;
|
GstCaps *ret;
|
||||||
|
@ -614,6 +617,31 @@ gst_deinterleave_sink_event (GstPad * pad, GstObject * parent, GstEvent * event)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static gboolean
|
||||||
|
gst_deinterleave_sink_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
||||||
|
{
|
||||||
|
gboolean res;
|
||||||
|
|
||||||
|
switch (GST_QUERY_TYPE (query)) {
|
||||||
|
case GST_QUERY_CAPS:{
|
||||||
|
GstCaps *filter;
|
||||||
|
GstCaps *caps;
|
||||||
|
|
||||||
|
gst_query_parse_caps (query, &filter);
|
||||||
|
caps = gst_deinterleave_getcaps (pad, parent, filter);
|
||||||
|
gst_query_set_caps_result (query, caps);
|
||||||
|
gst_caps_unref (caps);
|
||||||
|
res = TRUE;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
res = gst_pad_query_default (pad, parent, query);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_deinterleave_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
gst_deinterleave_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
||||||
{
|
{
|
||||||
|
@ -650,7 +678,7 @@ gst_deinterleave_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
|
||||||
GstCaps *filter, *caps;
|
GstCaps *filter, *caps;
|
||||||
|
|
||||||
gst_query_parse_caps (query, &filter);
|
gst_query_parse_caps (query, &filter);
|
||||||
caps = gst_deinterleave_sink_getcaps (pad, parent, filter);
|
caps = gst_deinterleave_getcaps (pad, parent, filter);
|
||||||
gst_query_set_caps_result (query, caps);
|
gst_query_set_caps_result (query, caps);
|
||||||
gst_caps_unref (caps);
|
gst_caps_unref (caps);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue