mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
Added a default handler for the pads.
Original commit message from CVS: Added a default handler for the pads.
This commit is contained in:
parent
8e2530ee1c
commit
fa78165bcd
2 changed files with 27 additions and 14 deletions
38
gst/gstpad.c
38
gst/gstpad.c
|
@ -1455,10 +1455,10 @@ gst_pad_push (GstPad *pad, GstBuffer *buf)
|
||||||
GST_DEBUG (GST_CAT_DATAFLOW, "calling chainhandler &%s of peer pad %s:%s\n",
|
GST_DEBUG (GST_CAT_DATAFLOW, "calling chainhandler &%s of peer pad %s:%s\n",
|
||||||
GST_DEBUG_FUNCPTR_NAME (peer->chainhandler), GST_DEBUG_PAD_NAME (((GstPad*)peer)));
|
GST_DEBUG_FUNCPTR_NAME (peer->chainhandler), GST_DEBUG_PAD_NAME (((GstPad*)peer)));
|
||||||
(peer->chainhandler) (((GstPad*)peer), buf);
|
(peer->chainhandler) (((GstPad*)peer), buf);
|
||||||
} else
|
}
|
||||||
{
|
else {
|
||||||
GST_DEBUG (GST_CAT_DATAFLOW, "no chainhandler\n");
|
GST_DEBUG (GST_CAT_DATAFLOW, "no chainhandler\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -1958,21 +1958,31 @@ gst_ghost_pad_new (gchar *name,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
/* pad is the receiving pad */
|
gst_pad_event_default (GstPad *pad, GstEvent *event)
|
||||||
static void
|
|
||||||
gst_pad_event_default(GstPad *pad, GstEventType event, guint64 timestamp, guint32 data)
|
|
||||||
{
|
{
|
||||||
GST_DEBUG(GST_CAT_EVENT, "default event handler for pad %s:%s\n",GST_DEBUG_PAD_NAME(pad));
|
GstElement *element = GST_PAD_PARENT (pad);
|
||||||
switch (event) {
|
|
||||||
|
switch (GST_EVENT_TYPE (event)) {
|
||||||
case GST_EVENT_EOS:
|
case GST_EVENT_EOS:
|
||||||
if (GST_PAD_PARENT(pad)->numsinkpads == 1)
|
// gst_element_signal_eos (element);
|
||||||
gst_element_signal_eos(GST_PAD_PARENT(pad));
|
gst_element_set_state (element, GST_STATE_PAUSED);
|
||||||
else
|
{
|
||||||
GST_DEBUG(GST_CAT_EVENT, "WARNING: no default behavior for EOS with multiple sinkpads\n");
|
GList *pads = element->pads;
|
||||||
|
|
||||||
|
while (pads) {
|
||||||
|
if (GST_PAD_DIRECTION (pads->data) == GST_PAD_SRC) {
|
||||||
|
gst_pad_push (GST_PAD (pads->data), GST_BUFFER (gst_event_new (GST_EVENT_TYPE (event))));
|
||||||
|
}
|
||||||
|
pads = g_list_next (pads);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
|
g_warning ("no default handler for event\n");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
gst_event_free (event);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -404,6 +404,9 @@ NULL )
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
gboolean gst_pad_send_event (GstPad *pad, GstEvent *event);
|
gboolean gst_pad_send_event (GstPad *pad, GstEvent *event);
|
||||||
|
void gst_pad_event_default (GstPad *pad, GstEvent *event);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
GstBuffer* gst_pad_peek (GstPad *pad);
|
GstBuffer* gst_pad_peek (GstPad *pad);
|
||||||
GstPad* gst_pad_select (GList *padlist);
|
GstPad* gst_pad_select (GList *padlist);
|
||||||
|
|
Loading…
Reference in a new issue