From 5d69f2bc36f0b0ac8928683de434d32a2ea42b46 Mon Sep 17 00:00:00 2001
From: Edward Hervey <edward@centricular.com>
Date: Sat, 4 Jan 2025 10:01:40 +0100
Subject: [PATCH] qtmux: Fix GST_STIME_ARGS usage

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
---
 subprojects/gst-plugins-good/gst/isomp4/gstqtmux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/subprojects/gst-plugins-good/gst/isomp4/gstqtmux.c b/subprojects/gst-plugins-good/gst/isomp4/gstqtmux.c
index ea114bf7e3..69589cfc9a 100644
--- a/subprojects/gst-plugins-good/gst/isomp4/gstqtmux.c
+++ b/subprojects/gst-plugins-good/gst/isomp4/gstqtmux.c
@@ -4501,7 +4501,7 @@ init:
         G_GINT64_FORMAT " (%" GST_TIME_FORMAT ") of %" G_GINT64_FORMAT " (%"
         GST_STIME_FORMAT ")", first_qt_dts, GST_TIME_ARGS (first_dts), dts,
         GST_TIME_ARGS (current_dts), dts - first_qt_dts,
-        GST_STIME_ARGS (current_dts - first_dts));
+        GST_STIME_ARGS ((GstClockTimeDiff) (current_dts - first_dts)));
     atom_traf_set_base_decode_time (pad->traf, dts - first_qt_dts);
   }