mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-30 04:00:37 +00:00
glwindow: remove unused private alive variable
This commit is contained in:
parent
5b11ac0819
commit
785feed73f
1 changed files with 0 additions and 5 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue