mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 20:21:24 +00:00
ext/jack/gstjackaudiosink.c: Work around missing bits of thread-safety on older GLibs some more to avoid assertions w...
Original commit message from CVS: * ext/jack/gstjackaudiosink.c: (gst_jack_audio_sink_class_init): Work around missing bits of thread-safety on older GLibs some more to avoid assertions when starting up multiple playbin objects concurrently (see #512382).
This commit is contained in:
parent
98b7a0c36d
commit
ac9c01d8c1
2 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2008-04-06 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
|
* ext/jack/gstjackaudiosink.c: (gst_jack_audio_sink_class_init):
|
||||||
|
Work around missing bits of thread-safety on older GLibs some
|
||||||
|
more to avoid assertions when starting up multiple playbin
|
||||||
|
objects concurrently (see #512382).
|
||||||
|
|
||||||
2008-04-06 Sebastian Dröge <slomo@circular-chaos.org>
|
2008-04-06 Sebastian Dröge <slomo@circular-chaos.org>
|
||||||
|
|
||||||
Patch by: Sjoerd Simons <sjoerd at luon dot net>
|
Patch by: Sjoerd Simons <sjoerd at luon dot net>
|
||||||
|
|
|
@ -773,6 +773,10 @@ gst_jack_audio_sink_class_init (GstJackAudioSinkClass * klass)
|
||||||
gstbaseaudiosink_class->create_ringbuffer =
|
gstbaseaudiosink_class->create_ringbuffer =
|
||||||
GST_DEBUG_FUNCPTR (gst_jack_audio_sink_create_ringbuffer);
|
GST_DEBUG_FUNCPTR (gst_jack_audio_sink_create_ringbuffer);
|
||||||
|
|
||||||
|
/* ref class from a thread-safe context to work around missing bit of
|
||||||
|
* thread-safety in GObject */
|
||||||
|
g_type_class_ref (GST_TYPE_JACK_RING_BUFFER);
|
||||||
|
|
||||||
gst_jack_audio_client_init ();
|
gst_jack_audio_client_init ();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue