mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
alsaspdifsink: Use new gst_audio_clock_new_full()
This commit is contained in:
parent
2d870ee7fd
commit
e245709f96
1 changed files with 6 additions and 0 deletions
|
@ -187,7 +187,13 @@ static void
|
||||||
alsaspdifsink_init (AlsaSPDIFSink * sink, AlsaSPDIFSinkClass * g_class)
|
alsaspdifsink_init (AlsaSPDIFSink * sink, AlsaSPDIFSinkClass * g_class)
|
||||||
{
|
{
|
||||||
/* Create the provided clock. */
|
/* Create the provided clock. */
|
||||||
|
#if GST_CHECK_VERSION(0, 10, 31) || (GST_CHECK_VERSION(0, 10, 30) && GST_VERSION_NANO > 0)
|
||||||
|
sink->clock =
|
||||||
|
gst_audio_clock_new_full ("clock", alsaspdifsink_get_time,
|
||||||
|
gst_object_ref (sink), (GDestroyNotify) gst_object_unref);
|
||||||
|
#else
|
||||||
sink->clock = gst_audio_clock_new ("clock", alsaspdifsink_get_time, sink);
|
sink->clock = gst_audio_clock_new ("clock", alsaspdifsink_get_time, sink);
|
||||||
|
#endif
|
||||||
|
|
||||||
sink->card = 0;
|
sink->card = 0;
|
||||||
sink->device = g_strdup ("default");
|
sink->device = g_strdup ("default");
|
||||||
|
|
Loading…
Reference in a new issue