From: Guillaume Desmottes Date: Thu, 12 Dec 2024 09:43:26 +0000 (+0100) Subject: gl: raise WARNING instead of ERROR when no connector is connected X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a29591978bc5304e8798bf478b9d7fd9a18f41bf;p=platform%2Fupstream%2Fgstreamer.git 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: --- 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; }