mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 16:08:51 +00:00
glbasesrc: Reword error message
The initial glbasesrc implementation was based on a refactoring of gltestsrc, but one error message wasn't updated accordingly and remained specific to the gltestsrc implementation. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4222>
This commit is contained in:
parent
e448888e1e
commit
47b8618b2d
1 changed files with 2 additions and 2 deletions
|
@ -443,8 +443,8 @@ gst_gl_base_src_fill (GstPushSrc * psrc, GstBuffer * buffer)
|
||||||
gl_error:
|
gl_error:
|
||||||
{
|
{
|
||||||
g_rec_mutex_unlock (&src->priv->context_lock);
|
g_rec_mutex_unlock (&src->priv->context_lock);
|
||||||
GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (_("failed to draw pattern")),
|
GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND,
|
||||||
(_("A GL error occurred")));
|
(_("failed to fill GL memory")), (_("A GL error occurred")));
|
||||||
return GST_FLOW_NOT_NEGOTIATED;
|
return GST_FLOW_NOT_NEGOTIATED;
|
||||||
}
|
}
|
||||||
not_negotiated:
|
not_negotiated:
|
||||||
|
|
Loading…
Reference in a new issue