From 47b723c6e192d2c5e93b8553a47ce99a3d937356 Mon Sep 17 00:00:00 2001
From: Edward Hervey <edward@centricular.com>
Date: Sat, 4 Jan 2025 10:06:15 +0100
Subject: [PATCH] splitmuxsink: Fix GST_(S)TIME_{ARGS|FORMAT} usage

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
---
 .../gst-plugins-good/gst/multifile/gstsplitmuxsink.c      | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsink.c b/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsink.c
index f163b12252..e3a7a82de9 100644
--- a/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsink.c
+++ b/subprojects/gst-plugins-good/gst/multifile/gstsplitmuxsink.c
@@ -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 */
   }