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'
This commit is contained in:
Matthew Waters 2015-10-19 15:15:30 +11:00
parent c6d03bc7d4
commit b2718cbd81

View 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);