gl: be consistent in gobject boilerpate
authorMatthew Waters <matthew@centricular.com>
Mon, 19 Oct 2015 04:15:30 +0000 (15:15 +1100)
committerMatthew Waters <matthew@centricular.com>
Mon, 19 Oct 2015 04:15:30 +0000 (15:15 +1100)
GST_GL_IS_* vs GST_IS_GL_*

git grep -l 'GST_GL_IS_' | xargs sed -i 's/GST_GL_IS_/GST_IS_GL_/g'

ext/qt/qtitem.cc

index 7c4487f..69d0324 100644 (file)
@@ -387,7 +387,7 @@ qt_item_init_winsys (QtGLVideoItem * widget)
     return FALSE;
   }
 
-  if (!GST_GL_IS_CONTEXT (widget->priv->other_context)) {
+  if (!GST_IS_GL_CONTEXT (widget->priv->other_context)) {
     GST_ERROR ("%p failed to retrieve wrapped context %" GST_PTR_FORMAT, widget,
         widget->priv->other_context);
     g_mutex_unlock (&widget->priv->lock);