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