msdk: Don't print error log for missing DRM device path

It's expected in case that such DRM device is unavailable for some reasons,
specifically non-Intel platform or so

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1836>
This commit is contained in:
Seungha Yang 2022-03-03 04:57:42 +09:00 committed by GStreamer Marge Bot
parent 207769edbb
commit 799616aea9

View file

@ -170,7 +170,7 @@ gst_msdk_context_use_vaapi (GstMsdkContext * context)
path = get_device_path ();
if (path == NULL) {
GST_ERROR ("Couldn't find a drm device node to open");
GST_WARNING ("Couldn't find a drm device node to open");
return FALSE;
}