mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-06 07:28:53 +00:00
ptp: Only warn if the clock id and interface of a timed out matches the current one
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5520>
This commit is contained in:
parent
bd985ea608
commit
9ba8107ec6
1 changed files with 2 additions and 1 deletions
|
@ -2365,7 +2365,8 @@ cleanup_cb (gpointer data)
|
||||||
GList *tmp = n->next;
|
GList *tmp = n->next;
|
||||||
|
|
||||||
if (compare_clock_identity (&sender->master_clock_identity,
|
if (compare_clock_identity (&sender->master_clock_identity,
|
||||||
&domain->master_clock_identity) == 0)
|
&domain->master_clock_identity) == 0
|
||||||
|
&& sender->iface_idx == domain->iface_idx)
|
||||||
GST_WARNING ("currently selected master clock timed out");
|
GST_WARNING ("currently selected master clock timed out");
|
||||||
g_free (sender);
|
g_free (sender);
|
||||||
domain->announce_senders =
|
domain->announce_senders =
|
||||||
|
|
Loading…
Reference in a new issue