mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 08:41:07 +00:00
glstereosplit: use gst_gl_display_create_context
Also unlock the lock on error. https://bugzilla.gnome.org/show_bug.cgi?id=750310
This commit is contained in:
parent
ac54fa8c95
commit
6fc5b18138
1 changed files with 4 additions and 2 deletions
|
@ -571,9 +571,11 @@ ensure_context (GstGLStereoSplit * self)
|
|||
self->context =
|
||||
gst_gl_display_get_gl_context_for_thread (self->display, NULL);
|
||||
if (!self->context) {
|
||||
self->context = gst_gl_context_new (self->display);
|
||||
if (!gst_gl_context_create (self->context, self->other_context, &error))
|
||||
if (!gst_gl_display_create_context (self->display, self->other_context,
|
||||
&self->context, &error)) {
|
||||
GST_OBJECT_UNLOCK (self->display);
|
||||
goto context_error;
|
||||
}
|
||||
}
|
||||
} while (!gst_gl_display_add_context (self->display, self->context));
|
||||
GST_OBJECT_UNLOCK (self->display);
|
||||
|
|
Loading…
Reference in a new issue