mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 14:56:36 +00:00
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:
parent
207769edbb
commit
799616aea9
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ gst_msdk_context_use_vaapi (GstMsdkContext * context)
|
||||||
|
|
||||||
path = get_device_path ();
|
path = get_device_path ();
|
||||||
if (path == NULL) {
|
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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue