mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-19 22:05:58 +00:00
netclock: Fix docstring for round-trip-limit and uninit access warning.
Fix a typo in a doc string - the property is round-trip-limit, not roundtrip-limit. Remove a bogus GST_WARNING that can print an uninitialised variable and is redundant anyway.
This commit is contained in:
parent
1ce704d45d
commit
73a58cb0a2
1 changed files with 4 additions and 12 deletions
|
@ -130,7 +130,7 @@ gst_net_client_clock_class_init (GstNetClientClockClass * klass)
|
||||||
DEFAULT_PORT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
DEFAULT_PORT, G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* GstNetClientClock::roundtrip-limit:
|
* GstNetClientClock::round-trip-limit:
|
||||||
*
|
*
|
||||||
* Maximum allowed round-trip for packets. If this property is set to a nonzero
|
* Maximum allowed round-trip for packets. If this property is set to a nonzero
|
||||||
* value, all packets with a round-trip interval larger than this limit will be
|
* value, all packets with a round-trip interval larger than this limit will be
|
||||||
|
@ -311,17 +311,9 @@ gst_net_client_clock_observe_times (GstNetClientClock * self,
|
||||||
return;
|
return;
|
||||||
|
|
||||||
bogus_observation:
|
bogus_observation:
|
||||||
{
|
/* Schedule a new packet again soon */
|
||||||
GST_WARNING_OBJECT (self,
|
self->priv->timeout_expiration = gst_util_get_timestamp () + (GST_SECOND / 4);
|
||||||
"bogus round-trip interval; too long round trip or "
|
return;
|
||||||
"receive time < send time (%" GST_TIME_FORMAT " - %" GST_TIME_FORMAT
|
|
||||||
" => %" GST_TIME_FORMAT ")", GST_TIME_ARGS (local_1),
|
|
||||||
GST_TIME_ARGS (local_2), GST_TIME_ARGS (rtt));
|
|
||||||
/* Schedule a new packet again soon */
|
|
||||||
self->priv->timeout_expiration =
|
|
||||||
gst_util_get_timestamp () + (GST_SECOND / 4);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static gpointer
|
static gpointer
|
||||||
|
|
Loading…
Reference in a new issue