From 5c106c0c2af22192fdc2ffbf110795f738e5adb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 25 Aug 2015 10:09:14 +0300 Subject: [PATCH] gl/eagl: Unref context after setting a window handle gst_gl_window_get_context() returns a new reference. Hopefully fixes https://bugzilla.gnome.org/show_bug.cgi?id=753758 --- gst-libs/gst/gl/eagl/gstglwindow_eagl.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gst-libs/gst/gl/eagl/gstglwindow_eagl.m b/gst-libs/gst/gl/eagl/gstglwindow_eagl.m index 359b2b59a7..9d37b14ad8 100644 --- a/gst-libs/gst/gl/eagl/gstglwindow_eagl.m +++ b/gst-libs/gst/gl/eagl/gstglwindow_eagl.m @@ -114,6 +114,8 @@ gst_gl_window_eagl_set_window_handle (GstGLWindow * window, guintptr handle) window_eagl->priv->view = (UIView *) handle; GST_INFO_OBJECT (context, "handle set, updating layer"); gst_gl_context_eagl_update_layer (context); + + gst_object_unref (context); } static void