mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 10:55:34 +00:00
pad-monitor: improve timestamp ranges comparison message a little
Show the buffer range that is being compared.
This commit is contained in:
parent
e94427e639
commit
363de0e555
1 changed files with 4 additions and 1 deletions
|
@ -505,10 +505,13 @@ gst_qa_pad_monitor_check_buffer_timestamp_in_received_range (GstQaPadMonitor *
|
||||||
if (!has_one) {
|
if (!has_one) {
|
||||||
GST_DEBUG_OBJECT (monitor, "Skipping timestamp in range check as no "
|
GST_DEBUG_OBJECT (monitor, "Skipping timestamp in range check as no "
|
||||||
"internal linked pad was found");
|
"internal linked pad was found");
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (!found) {
|
if (!found) {
|
||||||
GST_QA_MONITOR_REPORT_WARNING (monitor, FALSE, BUFFER, TIMESTAMP,
|
GST_QA_MONITOR_REPORT_WARNING (monitor, FALSE, BUFFER, TIMESTAMP,
|
||||||
"Timestamp is out of range of received input");
|
"Timestamp %" GST_TIME_FORMAT " - %" GST_TIME_FORMAT
|
||||||
|
" is out of range of received input", GST_TIME_ARGS (ts),
|
||||||
|
GST_TIME_ARGS (ts_end));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue