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:
Philippe Normand 2023-03-19 11:13:46 +00:00 committed by GStreamer Marge Bot
parent e448888e1e
commit 47b8618b2d

View file

@ -443,8 +443,8 @@ gst_gl_base_src_fill (GstPushSrc * psrc, GstBuffer * buffer)
gl_error:
{
g_rec_mutex_unlock (&src->priv->context_lock);
GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND, (_("failed to draw pattern")),
(_("A GL error occurred")));
GST_ELEMENT_ERROR (src, RESOURCE, NOT_FOUND,
(_("failed to fill GL memory")), (_("A GL error occurred")));
return GST_FLOW_NOT_NEGOTIATED;
}
not_negotiated: