mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-02 21:48:55 +00:00
gtk, qt, gl: fix typo in debug and error messages
This commit is contained in:
parent
2fc98af421
commit
1cb3e8c591
4 changed files with 7 additions and 7 deletions
|
@ -500,7 +500,7 @@ _get_gl_context (GtkGstGLWidget * gst_widget)
|
||||||
|
|
||||||
gst_gl_context_activate (priv->other_context, TRUE);
|
gst_gl_context_activate (priv->other_context, TRUE);
|
||||||
if (!gst_gl_context_fill_info (priv->other_context, &error)) {
|
if (!gst_gl_context_fill_info (priv->other_context, &error)) {
|
||||||
GST_ERROR ("failed to retreive gdk context info: %s", error->message);
|
GST_ERROR ("failed to retrieve gdk context info: %s", error->message);
|
||||||
g_object_unref (priv->other_context);
|
g_object_unref (priv->other_context);
|
||||||
priv->other_context = NULL;
|
priv->other_context = NULL;
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -303,7 +303,7 @@ gst_qt_sink_change_state (GstElement * element, GstStateChange transition)
|
||||||
if (!app) {
|
if (!app) {
|
||||||
GST_ELEMENT_ERROR (element, RESOURCE, NOT_FOUND,
|
GST_ELEMENT_ERROR (element, RESOURCE, NOT_FOUND,
|
||||||
("%s", "Failed to connect to Qt"),
|
("%s", "Failed to connect to Qt"),
|
||||||
("%s", "Could not retreive QGuiApplication instance"));
|
("%s", "Could not retrieve QGuiApplication instance"));
|
||||||
return GST_STATE_CHANGE_FAILURE;
|
return GST_STATE_CHANGE_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -327,7 +327,7 @@ gst_qt_sink_change_state (GstElement * element, GstStateChange transition)
|
||||||
|
|
||||||
if (!qt_sink->display || !qt_sink->context || !qt_sink->qt_context) {
|
if (!qt_sink->display || !qt_sink->context || !qt_sink->qt_context) {
|
||||||
GST_ELEMENT_ERROR (element, RESOURCE, NOT_FOUND,
|
GST_ELEMENT_ERROR (element, RESOURCE, NOT_FOUND,
|
||||||
("%s", "Could not retreive window system OpenGL configuration"),
|
("%s", "Could not retrieve window system OpenGL configuration"),
|
||||||
(NULL));
|
(NULL));
|
||||||
return GST_STATE_CHANGE_FAILURE;
|
return GST_STATE_CHANGE_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
|
@ -294,7 +294,7 @@ QtGLVideoItem::onSceneGraphInitialized ()
|
||||||
|
|
||||||
gst_gl_context_activate (this->priv->other_context, TRUE);
|
gst_gl_context_activate (this->priv->other_context, TRUE);
|
||||||
if (!gst_gl_context_fill_info (this->priv->other_context, &error)) {
|
if (!gst_gl_context_fill_info (this->priv->other_context, &error)) {
|
||||||
GST_ERROR ("%p failed to retreive qt context info: %s", this, error->message);
|
GST_ERROR ("%p failed to retrieve qt context info: %s", this, error->message);
|
||||||
g_object_unref (this->priv->other_context);
|
g_object_unref (this->priv->other_context);
|
||||||
this->priv->other_context = NULL;
|
this->priv->other_context = NULL;
|
||||||
} else {
|
} else {
|
||||||
|
@ -328,14 +328,14 @@ qt_item_init_winsys (QtGLVideoItem * widget)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!GST_IS_GL_DISPLAY (widget->priv->display)) {
|
if (!GST_IS_GL_DISPLAY (widget->priv->display)) {
|
||||||
GST_ERROR ("%p failed to retreive display connection %" GST_PTR_FORMAT,
|
GST_ERROR ("%p failed to retrieve display connection %" GST_PTR_FORMAT,
|
||||||
widget, widget->priv->display);
|
widget, widget->priv->display);
|
||||||
g_mutex_unlock (&widget->priv->lock);
|
g_mutex_unlock (&widget->priv->lock);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!GST_GL_IS_CONTEXT (widget->priv->other_context)) {
|
if (!GST_GL_IS_CONTEXT (widget->priv->other_context)) {
|
||||||
GST_ERROR ("%p failed to retreive wrapped context %" GST_PTR_FORMAT, widget,
|
GST_ERROR ("%p failed to retrieve wrapped context %" GST_PTR_FORMAT, widget,
|
||||||
widget->priv->other_context);
|
widget->priv->other_context);
|
||||||
g_mutex_unlock (&widget->priv->lock);
|
g_mutex_unlock (&widget->priv->lock);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|
|
@ -507,7 +507,7 @@ gst_gl_context_get_proc_address_with_platform (GstGLPlatform context_type,
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_gl_context_get_current_gl_api:
|
* gst_gl_context_get_current_gl_api:
|
||||||
* @platform: the #GstGLPlatform to retreive the API for
|
* @platform: the #GstGLPlatform to retrieve the API for
|
||||||
* @major: (out): (allow-none): the major version
|
* @major: (out): (allow-none): the major version
|
||||||
* @minor: (out): (allow-none): the minor version
|
* @minor: (out): (allow-none): the minor version
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue