splitmuxsink: Fix GST_(S)TIME_{ARGS|FORMAT} usage

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
This commit is contained in:
Edward Hervey 2025-01-04 10:06:15 +01:00 committed by GStreamer Marge Bot
parent 8bc17b58a2
commit 47b723c6e1

View file

@ -2552,8 +2552,8 @@ need_new_fragment (GstSplitMuxSink * splitmux,
}
GST_TRACE_OBJECT (splitmux,
"GOP start time %" GST_STIME_FORMAT " is after requested split point %"
GST_STIME_FORMAT, GST_STIME_ARGS (gop->start_time),
GST_STIME_ARGS (time_to_split));
GST_TIME_FORMAT, GST_STIME_ARGS (gop->start_time),
GST_TIME_ARGS (time_to_split));
GST_OBJECT_UNLOCK (splitmux);
return TRUE;
}
@ -2566,8 +2566,8 @@ need_new_fragment (GstSplitMuxSink * splitmux,
if (thresh_time > 0 && queued_time > thresh_time) {
GST_TRACE_OBJECT (splitmux,
"queued time %" GST_STIME_FORMAT " overruns time limit",
GST_STIME_ARGS (queued_time));
"queued time %" GST_TIME_FORMAT " overruns time limit",
GST_TIME_ARGS (queued_time));
return TRUE; /* Would overrun time limit */
}