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: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8136>
This commit is contained in:
Guillaume Desmottes 2024-12-12 10:43:26 +01:00
parent c3cc8205b2
commit a29591978b

View file

@ -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;
}