From 0ba1945c57d1595abe9f319a04ffc34798997cd3 Mon Sep 17 00:00:00 2001 From: Julien Isorce Date: Wed, 4 Nov 2009 23:12:42 +0100 Subject: [PATCH] [398/906] gldownload: do not forgot to create the gl context fix #600630 --- gst/gl/gstgldownload.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/gl/gstgldownload.c b/gst/gl/gstgldownload.c index 0e3c725d48..84e0e20897 100644 --- a/gst/gl/gstgldownload.c +++ b/gst/gl/gstgldownload.c @@ -261,6 +261,7 @@ gst_gl_download_start (GstBaseTransform * bt) GstGLDownload* download = GST_GL_DOWNLOAD (bt); download->display = gst_gl_display_new (); + gst_gl_display_create_context (download->display, 0); return TRUE; }