mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-13 15:12:58 +00:00
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:
parent
39a1b61469
commit
316722d7c9
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue