summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2016-12-22 18:47:19 +0100
committerSebastian Dröge <sebastian@centricular.com>2017-01-09 15:40:57 +0200
commitcd8c5a12484ac32178757965e8e5a27664b59f6c (patch)
tree555abe7a7cc59c39fd1852a9b261de863cb59907
parentfb4b5449025ed6d7ae5a53c549746e79aff9db2b (diff)
downloadgstreamer-plugins-base-cd8c5a12484ac32178757965e8e5a27664b59f6c.tar.gz
tools: gst-play: set GST_GL_XINITHREADS
This ensure that XInitThreads is called and so gl contexts are properly initialized. https://bugzilla.gnome.org/show_bug.cgi?id=776403
-rw-r--r--tools/gst-play.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/gst-play.c b/tools/gst-play.c
index 5708737ac..189e8f707 100644
--- a/tools/gst-play.c
+++ b/tools/gst-play.c
@@ -1194,6 +1194,8 @@ main (int argc, char **argv)
#endif
g_set_prgname ("gst-play-" GST_API_VERSION);
+ /* Ensure XInitThreads() is called if/when needed */
+ g_setenv ("GST_GL_XINITTHREADS", "1", TRUE);
ctx = g_option_context_new ("FILE1|URI1 [FILE2|URI2] [FILE3|URI3] ...");
g_option_context_add_main_entries (ctx, options, GETTEXT_PACKAGE);