mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-31 03:29:50 +00:00
splitmuxsink: Fix GST_(S)TIME_{ARGS|FORMAT} usage
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
This commit is contained in:
parent
8bc17b58a2
commit
47b723c6e1
1 changed files with 4 additions and 4 deletions
|
@ -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 */
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue