From 8a6d9748b6a01e785c6981f3fd30ceffc6c248c3 Mon Sep 17 00:00:00 2001 From: Nicolas Dufresne Date: Wed, 18 Jan 2023 16:39:03 -0500 Subject: [PATCH] gleglimage: Fix GL_OES_EGL_image_external name in debug trace There is a debug log when this extension is missing, but it was reporting the wrong extension name, which was confusing. Part-of: --- subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c index 344a463..2227240 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/gstglupload.c @@ -643,8 +643,7 @@ _dma_buf_upload_accept (gpointer impl, GstBuffer * buffer, GstCaps * in_caps, if (dmabuf->target == GST_GL_TEXTURE_TARGET_EXTERNAL_OES && !gst_gl_context_check_feature (dmabuf->upload->context, "GL_OES_EGL_image_external")) { - GST_DEBUG_OBJECT (dmabuf->upload, - "no EGL_KHR_image_base_external extension"); + GST_DEBUG_OBJECT (dmabuf->upload, "no GL_OES_EGL_image_external extension"); return FALSE; } -- 2.7.4