From a29591978bc5304e8798bf478b9d7fd9a18f41bf Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 12 Dec 2024 10:43:26 +0100 Subject: [PATCH] gl: raise WARNING instead of ERROR when no connector is connected This is a valid and working use case when rendering on a headless server. Part-of: --- .../gst-plugins-base/gst-libs/gst/gl/gbm/gstgldisplay_gbm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/gst-plugins-base/gst-libs/gst/gl/gbm/gstgldisplay_gbm.c b/subprojects/gst-plugins-base/gst-libs/gst/gl/gbm/gstgldisplay_gbm.c index 485c5d013b..70224ea614 100644 --- a/subprojects/gst-plugins-base/gst-libs/gst/gl/gbm/gstgldisplay_gbm.c +++ b/subprojects/gst-plugins-base/gst-libs/gst/gl/gbm/gstgldisplay_gbm.c @@ -216,7 +216,7 @@ gst_gl_display_gbm_setup_drm (GstGLDisplayGBM * display_gbm, const gchar * } if (connected_connector == NULL) { - GST_ERROR ("No connected DRM connector found"); + GST_WARNING ("No connected DRM connector found"); goto cleanup; }