From 78f4777a822d5356523e7d687e1777bf21958253 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Manuel=20J=C3=A1quez=20Leal?= Date: Thu, 17 Jun 2021 11:25:11 +0200 Subject: [PATCH] msdk: Demote error log message to warning. It is not an error that the available hardware doesn't support VA-API/MSDK. Just none plugin features will be registered. Part-of: --- sys/msdk/gstmsdkcontext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/msdk/gstmsdkcontext.c b/sys/msdk/gstmsdkcontext.c index 1938f38257..5e9821c9a5 100644 --- a/sys/msdk/gstmsdkcontext.c +++ b/sys/msdk/gstmsdkcontext.c @@ -162,7 +162,7 @@ gst_msdk_context_use_vaapi (GstMsdkContext * context) fd = get_device_id (); if (fd < 0) { - GST_ERROR ("Couldn't find a drm device node to open"); + GST_WARNING ("Couldn't find a valid drm device node"); return FALSE; }