From b2718cbd81338e7edf037da0c5f69e15c9b50375 Mon Sep 17 00:00:00 2001 From: Matthew Waters Date: Mon, 19 Oct 2015 15:15:30 +1100 Subject: [PATCH] gl: be consistent in gobject boilerpate 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/qt/qtitem.cc b/ext/qt/qtitem.cc index 7c4487f87d..69d0324898 100644 --- a/ext/qt/qtitem.cc +++ b/ext/qt/qtitem.cc @@ -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);