5738c35
diff --git a/gst-plugins-good-1.18.0/ext/qt/gstqsgtexture.cc b/gst-plugins-good-1.18.0/ext/qt/gstqsgtexture.cc
5738c35
index a05d26e..bfa79cd 100644
5738c35
--- a/gst-plugins-good-1.18.0/ext/qt/gstqsgtexture.cc
5738c35
+++ b/gst-plugins-good-1.18.0/ext/qt/gstqsgtexture.cc
5738c35
@@ -35,7 +35,7 @@ GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
5738c35
 
5738c35
 GstQSGTexture::GstQSGTexture ()
5738c35
 {
5738c35
-  static volatile gsize _debug;
5738c35
+  static gsize _debug;
5738c35
 
5738c35
   initializeOpenGLFunctions();
5738c35
 
5738c35
diff --git a/gst-plugins-good-1.18.0/ext/qt/gstqtglutility.cc b/gst-plugins-good-1.18.0/ext/qt/gstqtglutility.cc
5738c35
index acb89b6..657bfda 100644
5738c35
--- a/gst-plugins-good-1.18.0/ext/qt/gstqtglutility.cc
5738c35
+++ b/gst-plugins-good-1.18.0/ext/qt/gstqtglutility.cc
5738c35
@@ -66,7 +66,7 @@ gst_qt_get_gl_display ()
5738c35
 {
5738c35
   GstGLDisplay *display = NULL;
5738c35
   QGuiApplication *app = static_cast<QGuiApplication *> (QCoreApplication::instance ());
5738c35
-  static volatile gsize _debug;
5738c35
+  static gsize _debug;
5738c35
 
5738c35
   g_assert (app != NULL);
5738c35
 
5738c35
diff --git a/gst-plugins-good-1.18.0/ext/qt/qtglrenderer.cc b/gst-plugins-good-1.18.0/ext/qt/qtglrenderer.cc
5738c35
index 2ad5601..576171c 100644
5738c35
--- a/gst-plugins-good-1.18.0/ext/qt/qtglrenderer.cc
5738c35
+++ b/gst-plugins-good-1.18.0/ext/qt/qtglrenderer.cc
5738c35
@@ -22,7 +22,7 @@ GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFAULT);
5738c35
 static void
5738c35
 init_debug (void)
5738c35
 {
5738c35
-  static volatile gsize _debug;
5738c35
+  static gsize _debug;
5738c35
 
5738c35
   if (g_once_init_enter (&_debug)) {
5738c35
     GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "qtglrenderer", 0,
5738c35
diff --git a/gst-plugins-good-1.18.0/ext/qt/qtitem.cc b/gst-plugins-good-1.18.0/ext/qt/qtitem.cc
5738c35
index 49dafc8..caa1ab5 100644
5738c35
--- a/gst-plugins-good-1.18.0/ext/qt/qtitem.cc
5738c35
+++ b/gst-plugins-good-1.18.0/ext/qt/qtitem.cc
5738c35
@@ -102,7 +102,7 @@ void InitializeSceneGraph::run()
5738c35
 
5738c35
 QtGLVideoItem::QtGLVideoItem()
5738c35
 {
5738c35
-  static volatile gsize _debug;
5738c35
+  static gsize _debug;
5738c35
 
5738c35
   if (g_once_init_enter (&_debug)) {
5738c35
     GST_DEBUG_CATEGORY_INIT (GST_CAT_DEFAULT, "qtglwidget", 0, "Qt GL Widget");
5738c35
diff --git a/gst-plugins-good-1.18.0/ext/qt/qtwindow.cc b/gst-plugins-good-1.18.0/ext/qt/qtwindow.cc
5738c35
index 9360c33..55a13ab 100644
5738c35
--- a/gst-plugins-good-1.18.0/ext/qt/qtwindow.cc
5738c35
+++ b/gst-plugins-good-1.18.0/ext/qt/qtwindow.cc
5738c35
@@ -103,7 +103,7 @@ QtGLWindow::QtGLWindow ( QWindow * parent, QQuickWindow *src ) :
5738c35
   QQuickWindow( parent ), source (src)
5738c35
 {
5738c35
   QGuiApplication *app = static_cast<QGuiApplication *> (QCoreApplication::instance ());
5738c35
-  static volatile gsize _debug;
5738c35
+  static gsize _debug;
5738c35
 
5738c35
   g_assert (app != NULL);
5738c35
 
5738c35
@@ -152,7 +152,7 @@ QtGLWindow::beforeRendering()
5738c35
 
5738c35
   g_mutex_lock (&this->priv->lock);
5738c35
 
5738c35
-  static volatile gsize once = 0;
5738c35
+  static gsize once = 0;
5738c35
   if (g_once_init_enter(&once)) {
5738c35
     this->priv->start = QDateTime::currentDateTime().toMSecsSinceEpoch();
5738c35
     g_once_init_leave(&once,1);