gl: XInitThreads when env variable is set

This is too allow gst-launch debugging with multiple GL contexts as
well as avoiding segfaulting innocent gtk+ apps that have not called
XInitThreads.

https://bugzilla.gnome.org/show_bug.cgi?id=731525
This commit is contained in:
Matthew Waters 2014-06-24 23:51:24 +10:00 committed by Tim-Philipp Müller
parent bcce615263
commit 3e092e1579

View file

@ -77,6 +77,10 @@
#include <bcm_host.h>
#endif
#if GST_GL_HAVE_WINDOW_X11
#include <X11/Xlib.h>
#endif
#define GST_CAT_DEFAULT gst_gl_gstgl_debug
GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
@ -91,6 +95,11 @@ plugin_init (GstPlugin * plugin)
bcm_host_init ();
#endif
#if GST_GL_HAVE_WINDOW_X11
if (g_getenv ("GST_GL_XINITTHREADS"))
XInitThreads ();
#endif
if (!gst_element_register (plugin, "glimagesink",
GST_RANK_SECONDARY, GST_TYPE_GLIMAGE_SINK)) {
return FALSE;