From d6bcbe47e99f17d3f8f7c899a4f822143343403a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Tue, 17 Mar 2020 12:47:33 +0100 Subject: [PATCH] plugin: don't error if cannot create display This might generated errors on automatic tools such as CI. Let's rather just raise a warning and let continue. --- gst/vaapi/gstvaapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/vaapi/gstvaapi.c b/gst/vaapi/gstvaapi.c index 324e4badfa..71bdacf4d2 100644 --- a/gst/vaapi/gstvaapi.c +++ b/gst/vaapi/gstvaapi.c @@ -227,7 +227,7 @@ plugin_init (GstPlugin * plugin) /* ERRORS: */ error_no_display: { - GST_ERROR ("Cannot create a VA display"); + GST_WARNING ("Cannot create a VA display"); /* Avoid blacklisting: failure to create a display could be a * transient condition */ return TRUE;