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.
This commit is contained in:
Víctor Manuel Jáquez Leal 2020-03-17 12:47:33 +01:00
parent 5eb8716598
commit d6bcbe47e9

View file

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