mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 05:06:17 +00:00
vulkan/operation: don't fail if extension isn't available
gst_vulkan_operation_add_dependency_frame() is a noop if the required extensions aren't available. Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5591>
This commit is contained in:
parent
274551d450
commit
405ae91ed7
1 changed files with 1 additions and 2 deletions
|
@ -1142,8 +1142,7 @@ gst_vulkan_operation_add_dependency_frame (GstVulkanOperation * self,
|
||||||
#endif /* synchronization2 */
|
#endif /* synchronization2 */
|
||||||
#endif /* timeline semaphore */
|
#endif /* timeline semaphore */
|
||||||
|
|
||||||
GST_INFO_OBJECT (self, "No dependencies added because of missing extensions");
|
return TRUE;
|
||||||
return FALSE;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue