gstptpclock: Fix GST_STIME_ARGS usage

It requires a signed value

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8229>
This commit is contained in:
Edward Hervey 2025-01-02 12:14:13 +01:00 committed by GStreamer Marge Bot
parent 39a1b61469
commit 316722d7c9

View file

@ -2052,7 +2052,7 @@ handle_send_time_ack (const guint8 * data, gsize size,
" from helper process",
GST_STIME_ARGS ((GstClockTimeDiff) (helper_send_time -
sync->delay_req_send_time_local)),
GST_STIME_ARGS (receive_time - helper_send_time));
GST_STIME_ARGS ((GstClockTimeDiff) (receive_time - helper_send_time)));
sync->delay_req_send_time_local = helper_send_time;
}
}