mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-01 06:01:04 +00:00
inputselector: move reoccuring logs to LOG and remove a double info
Less debug spew in DEBUG category. No need to log pad again if we use GST_LOG_OBJECT(pad,...).
This commit is contained in:
parent
8743c88a33
commit
3b35063ceb
1 changed files with 5 additions and 6 deletions
|
@ -487,7 +487,7 @@ gst_selector_pad_bufferalloc (GstPad * pad, guint64 offset,
|
||||||
sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
|
sel = GST_INPUT_SELECTOR (gst_pad_get_parent (pad));
|
||||||
selpad = GST_SELECTOR_PAD_CAST (pad);
|
selpad = GST_SELECTOR_PAD_CAST (pad);
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (pad, "received alloc");
|
GST_LOG_OBJECT (pad, "received alloc");
|
||||||
|
|
||||||
GST_INPUT_SELECTOR_LOCK (sel);
|
GST_INPUT_SELECTOR_LOCK (sel);
|
||||||
prev_active_sinkpad = sel->active_sinkpad;
|
prev_active_sinkpad = sel->active_sinkpad;
|
||||||
|
@ -565,7 +565,7 @@ gst_selector_pad_chain (GstPad * pad, GstBuffer * buf)
|
||||||
if (gst_input_selector_wait (sel, pad))
|
if (gst_input_selector_wait (sel, pad))
|
||||||
goto flushing;
|
goto flushing;
|
||||||
|
|
||||||
GST_DEBUG_OBJECT (pad, "getting active pad");
|
GST_LOG_OBJECT (pad, "getting active pad");
|
||||||
|
|
||||||
prev_active_sinkpad = sel->active_sinkpad;
|
prev_active_sinkpad = sel->active_sinkpad;
|
||||||
active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
|
active_sinkpad = gst_input_selector_activate_sinkpad (sel, pad);
|
||||||
|
@ -573,10 +573,10 @@ gst_selector_pad_chain (GstPad * pad, GstBuffer * buf)
|
||||||
/* update the segment on the srcpad */
|
/* update the segment on the srcpad */
|
||||||
start_time = GST_BUFFER_TIMESTAMP (buf);
|
start_time = GST_BUFFER_TIMESTAMP (buf);
|
||||||
if (GST_CLOCK_TIME_IS_VALID (start_time)) {
|
if (GST_CLOCK_TIME_IS_VALID (start_time)) {
|
||||||
GST_DEBUG_OBJECT (pad, "received start time %" GST_TIME_FORMAT,
|
GST_LOG_OBJECT (pad, "received start time %" GST_TIME_FORMAT,
|
||||||
GST_TIME_ARGS (start_time));
|
GST_TIME_ARGS (start_time));
|
||||||
if (GST_BUFFER_DURATION_IS_VALID (buf))
|
if (GST_BUFFER_DURATION_IS_VALID (buf))
|
||||||
GST_DEBUG_OBJECT (pad, "received end time %" GST_TIME_FORMAT,
|
GST_LOG_OBJECT (pad, "received end time %" GST_TIME_FORMAT,
|
||||||
GST_TIME_ARGS (start_time + GST_BUFFER_DURATION (buf)));
|
GST_TIME_ARGS (start_time + GST_BUFFER_DURATION (buf)));
|
||||||
|
|
||||||
GST_OBJECT_LOCK (pad);
|
GST_OBJECT_LOCK (pad);
|
||||||
|
@ -638,8 +638,7 @@ gst_selector_pad_chain (GstPad * pad, GstBuffer * buf)
|
||||||
}
|
}
|
||||||
|
|
||||||
/* forward */
|
/* forward */
|
||||||
GST_DEBUG_OBJECT (pad, "Forwarding buffer %p from pad %s:%s", buf,
|
GST_LOG_OBJECT (pad, "Forwarding buffer %p", buf);
|
||||||
GST_DEBUG_PAD_NAME (pad));
|
|
||||||
|
|
||||||
if ((caps = GST_BUFFER_CAPS (buf))) {
|
if ((caps = GST_BUFFER_CAPS (buf))) {
|
||||||
if (GST_PAD_CAPS (sel->srcpad) != caps)
|
if (GST_PAD_CAPS (sel->srcpad) != caps)
|
||||||
|
|
Loading…
Reference in a new issue