From 47b8618b2debd37138ea0ef6761dd547e66f92c8 Mon Sep 17 00:00:00 2001 From: Philippe Normand Date: Sun, 19 Mar 2023 11:13:46 +0000 Subject: [PATCH] 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: --- subprojects/gst-plugins-base/gst-libs/gst/gl/gstglbasesrc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglbasesrc.c b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglbasesrc.c index cd4b20f2a5..1fe9157e8a 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglbasesrc.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglbasesrc.c @@ -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: