mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-04 05:22:30 +00:00
signalprocessor: new is a c++ keyword, better logging
Use pad instead of new for the pad var. Also use pad as object in to debug logging.
This commit is contained in:
parent
71a11132ff
commit
233f7ef176
1 changed files with 13 additions and 13 deletions
|
@ -213,38 +213,38 @@ static void
|
||||||
gst_signal_processor_add_pad_from_template (GstSignalProcessor * self,
|
gst_signal_processor_add_pad_from_template (GstSignalProcessor * self,
|
||||||
GstPadTemplate * templ)
|
GstPadTemplate * templ)
|
||||||
{
|
{
|
||||||
GstPad *new;
|
GstPad *pad;
|
||||||
|
|
||||||
new = g_object_new (GST_TYPE_SIGNAL_PROCESSOR_PAD,
|
pad = g_object_new (GST_TYPE_SIGNAL_PROCESSOR_PAD,
|
||||||
"name", GST_OBJECT_NAME (templ), "direction", templ->direction,
|
"name", GST_OBJECT_NAME (templ), "direction", templ->direction,
|
||||||
"template", templ, NULL);
|
"template", templ, NULL);
|
||||||
GST_SIGNAL_PROCESSOR_PAD (new)->index =
|
GST_SIGNAL_PROCESSOR_PAD (pad)->index =
|
||||||
GST_SIGNAL_PROCESSOR_PAD_TEMPLATE (templ)->index;
|
GST_SIGNAL_PROCESSOR_PAD_TEMPLATE (templ)->index;
|
||||||
GST_SIGNAL_PROCESSOR_PAD (new)->channels =
|
GST_SIGNAL_PROCESSOR_PAD (pad)->channels =
|
||||||
GST_SIGNAL_PROCESSOR_PAD_TEMPLATE (templ)->channels;
|
GST_SIGNAL_PROCESSOR_PAD_TEMPLATE (templ)->channels;
|
||||||
|
|
||||||
gst_pad_set_setcaps_function (new,
|
gst_pad_set_setcaps_function (pad,
|
||||||
GST_DEBUG_FUNCPTR (gst_signal_processor_setcaps));
|
GST_DEBUG_FUNCPTR (gst_signal_processor_setcaps));
|
||||||
|
|
||||||
if (templ->direction == GST_PAD_SINK) {
|
if (templ->direction == GST_PAD_SINK) {
|
||||||
GST_DEBUG ("added new sink pad");
|
GST_DEBUG_OBJECT (pad, "added new sink pad");
|
||||||
|
|
||||||
gst_pad_set_event_function (new,
|
gst_pad_set_event_function (pad,
|
||||||
GST_DEBUG_FUNCPTR (gst_signal_processor_event));
|
GST_DEBUG_FUNCPTR (gst_signal_processor_event));
|
||||||
gst_pad_set_chain_function (new,
|
gst_pad_set_chain_function (pad,
|
||||||
GST_DEBUG_FUNCPTR (gst_signal_processor_chain));
|
GST_DEBUG_FUNCPTR (gst_signal_processor_chain));
|
||||||
gst_pad_set_activatepush_function (new,
|
gst_pad_set_activatepush_function (pad,
|
||||||
GST_DEBUG_FUNCPTR (gst_signal_processor_sink_activate_push));
|
GST_DEBUG_FUNCPTR (gst_signal_processor_sink_activate_push));
|
||||||
} else {
|
} else {
|
||||||
GST_DEBUG ("added new src pad");
|
GST_DEBUG_OBJECT (pad, "added new src pad");
|
||||||
|
|
||||||
gst_pad_set_getrange_function (new,
|
gst_pad_set_getrange_function (pad,
|
||||||
GST_DEBUG_FUNCPTR (gst_signal_processor_getrange));
|
GST_DEBUG_FUNCPTR (gst_signal_processor_getrange));
|
||||||
gst_pad_set_activatepull_function (new,
|
gst_pad_set_activatepull_function (pad,
|
||||||
GST_DEBUG_FUNCPTR (gst_signal_processor_src_activate_pull));
|
GST_DEBUG_FUNCPTR (gst_signal_processor_src_activate_pull));
|
||||||
}
|
}
|
||||||
|
|
||||||
gst_element_add_pad (GST_ELEMENT (self), new);
|
gst_element_add_pad (GST_ELEMENT (self), pad);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
Loading…
Reference in a new issue