mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-09-04 03:03:54 +00:00
clock: Fix typo
clocked -> clock
This commit is contained in:
parent
1c010fd230
commit
01ba6d40a8
2 changed files with 3 additions and 3 deletions
|
@ -1006,7 +1006,7 @@ gst_clock_get_internal_time (GstClock * clock)
|
||||||
if (G_UNLIKELY (GST_OBJECT_FLAG_IS_SET (clock,
|
if (G_UNLIKELY (GST_OBJECT_FLAG_IS_SET (clock,
|
||||||
GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC) && !clock->priv->synced))
|
GST_CLOCK_FLAG_NEEDS_STARTUP_SYNC) && !clock->priv->synced))
|
||||||
GST_CAT_WARNING_OBJECT (GST_CAT_CLOCK, clock,
|
GST_CAT_WARNING_OBJECT (GST_CAT_CLOCK, clock,
|
||||||
"clocked is not synchronized yet");
|
"clock is not synchronized yet");
|
||||||
|
|
||||||
cclass = GST_CLOCK_GET_CLASS (clock);
|
cclass = GST_CLOCK_GET_CLASS (clock);
|
||||||
|
|
||||||
|
|
|
@ -1274,7 +1274,7 @@ gst_net_client_clock_get_property (GObject * object, guint prop_id,
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_net_client_clocked_synced_cb (GstClock * internal_clock, gboolean synced,
|
gst_net_client_clock_synced_cb (GstClock * internal_clock, gboolean synced,
|
||||||
GstClock * self)
|
GstClock * self)
|
||||||
{
|
{
|
||||||
gst_clock_set_synced (self, synced);
|
gst_clock_set_synced (self, synced);
|
||||||
|
@ -1326,7 +1326,7 @@ gst_net_client_clock_constructed (GObject * object)
|
||||||
gst_clock_set_synced (GST_CLOCK (self), TRUE);
|
gst_clock_set_synced (GST_CLOCK (self), TRUE);
|
||||||
self->priv->synced_id =
|
self->priv->synced_id =
|
||||||
g_signal_connect (cache->clock, "synced",
|
g_signal_connect (cache->clock, "synced",
|
||||||
G_CALLBACK (gst_net_client_clocked_synced_cb), self);
|
G_CALLBACK (gst_net_client_clock_synced_cb), self);
|
||||||
GST_OBJECT_UNLOCK (cache->clock);
|
GST_OBJECT_UNLOCK (cache->clock);
|
||||||
|
|
||||||
G_UNLOCK (clocks_lock);
|
G_UNLOCK (clocks_lock);
|
||||||
|
|
Loading…
Reference in a new issue