msdk: Demote error log message to warning.
authorVíctor Manuel Jáquez Leal <vjaquez@igalia.com>
Thu, 17 Jun 2021 09:25:11 +0000 (11:25 +0200)
committerGStreamer Marge Bot <gitlab-merge-bot@gstreamer-foundation.org>
Mon, 21 Jun 2021 06:30:07 +0000 (06:30 +0000)
It is not an error that the available hardware doesn't support VA-API/MSDK. Just
none plugin features will be registered.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2336>

sys/msdk/gstmsdkcontext.c

index 1938f38..5e9821c 100644 (file)
@@ -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;
   }