From: Matthew Waters Date: Thu, 26 Mar 2020 02:50:22 +0000 (+1100) Subject: glwindow: remove unused private alive variable X-Git-Tag: 1.19.3~511^2~704 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=785feed73fa54ff511f52ea654bf191fa2f6cea9;p=platform%2Fupstream%2Fgstreamer.git glwindow: remove unused private alive variable --- diff --git a/gst-libs/gst/gl/gstglwindow.c b/gst-libs/gst/gl/gstglwindow.c index 3b5df55..9991f16 100644 --- a/gst-libs/gst/gl/gstglwindow.c +++ b/gst-libs/gst/gl/gstglwindow.c @@ -97,8 +97,6 @@ struct _GstGLWindowPrivate guint surface_width; guint surface_height; - gboolean alive; - GMutex sync_message_lock; GCond sync_message_cond; }; @@ -553,7 +551,6 @@ gst_gl_window_run (GstGLWindow * window) window_class = GST_GL_WINDOW_GET_CLASS (window); g_return_if_fail (window_class->run != NULL); - window->priv->alive = TRUE; window_class->run (window); } @@ -591,8 +588,6 @@ gst_gl_window_quit (GstGLWindow * window) GST_GL_WINDOW_LOCK (window); - window->priv->alive = FALSE; - window_class->quit (window); GST_INFO ("quit sent to gl window loop");