mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
rtpdtmfmux: Add some debug messages
This commit is contained in:
parent
2a39f410c1
commit
63c509b13e
1 changed files with 14 additions and 1 deletions
|
@ -134,12 +134,25 @@ gst_rtp_dtmf_mux_chain (GstPad * pad, GstBuffer * buffer)
|
||||||
mux->last_priority_end);
|
mux->last_priority_end);
|
||||||
else
|
else
|
||||||
mux->last_priority_end = running_ts + GST_BUFFER_DURATION (buffer);
|
mux->last_priority_end = running_ts + GST_BUFFER_DURATION (buffer);
|
||||||
|
GST_LOG_OBJECT (mux, "Got buffer %p on priority pad %s,"
|
||||||
|
" blocking regular pads until %" GST_TIME_FORMAT, buffer,
|
||||||
|
GST_PAD_NAME (pad), GST_TIME_ARGS (mux->last_priority_end));
|
||||||
|
} else {
|
||||||
|
GST_WARNING_OBJECT (mux, "Buffer %p on pad %s has an invalid duration,"
|
||||||
|
" not blocking other pad", buffer, GST_PAD_NAME (pad));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if (GST_CLOCK_TIME_IS_VALID (mux->last_priority_end) &&
|
if (GST_CLOCK_TIME_IS_VALID (mux->last_priority_end) &&
|
||||||
running_ts < mux->last_priority_end)
|
running_ts < mux->last_priority_end) {
|
||||||
|
GST_LOG_OBJECT (mux, "Dropping buffer %p because running time"
|
||||||
|
" %" GST_TIME_FORMAT " < %" GST_TIME_FORMAT, buffer,
|
||||||
|
GST_TIME_ARGS (running_ts), GST_TIME_ARGS (mux->last_priority_end));
|
||||||
goto drop_buffer;
|
goto drop_buffer;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
GST_LOG_OBJECT (mux, "Buffer %p on pad %s has an invalid timestamp,"
|
||||||
|
" letting through", GST_PAD_NAME (pad));
|
||||||
}
|
}
|
||||||
GST_OBJECT_UNLOCK (mux);
|
GST_OBJECT_UNLOCK (mux);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue