mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 16:26:39 +00:00
update for clock api changes
This commit is contained in:
parent
d2c6cc3a39
commit
dc04908412
3 changed files with 3 additions and 3 deletions
|
@ -1637,7 +1637,7 @@ again:
|
|||
GST_INFO_OBJECT (jitterbuffer, "scheduling timeout");
|
||||
id = gst_clock_new_single_shot_id (clock, sync_time);
|
||||
gst_clock_id_wait_async (id, (GstClockCallback) eos_reached,
|
||||
jitterbuffer);
|
||||
jitterbuffer, NULL);
|
||||
}
|
||||
GST_OBJECT_UNLOCK (jitterbuffer);
|
||||
}
|
||||
|
|
|
@ -192,7 +192,7 @@ message_handler (GstBus * bus, GstMessage * message, gpointer data)
|
|||
clock_id =
|
||||
gst_clock_new_single_shot_id (sync_clock, waittime + basetime);
|
||||
gst_clock_id_wait_async (clock_id, delayed_spectrum_update,
|
||||
(gpointer) spect);
|
||||
(gpointer) spect, NULL);
|
||||
gst_clock_id_unref (clock_id);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -145,7 +145,7 @@ message_handler (GstBus * bus, GstMessage * message, gpointer data)
|
|||
clock_id =
|
||||
gst_clock_new_single_shot_id (sync_clock, waittime + basetime);
|
||||
gst_clock_id_wait_async (clock_id, delayed_spectrum_update,
|
||||
(gpointer) spect);
|
||||
(gpointer) spect, NULL);
|
||||
gst_clock_id_unref (clock_id);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue