mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
cudamemorycopy: Fix build when gl is disabled
Fixes: https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/issues/1707 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/1868>
This commit is contained in:
parent
41d436e56e
commit
a63d1cf4c4
1 changed files with 2 additions and 1 deletions
|
@ -908,8 +908,9 @@ gst_cuda_memory_copy_transform (GstBaseTransform * trans, GstBuffer * inbuf,
|
|||
|
||||
ret = gst_cuda_memory_copy_gl_interop (self, inbuf, in_info,
|
||||
outbuf, out_info, context, FALSE);
|
||||
} else {
|
||||
} else
|
||||
#endif
|
||||
{
|
||||
GST_TRACE_OBJECT (self, "CUDA <-> SYSTEM");
|
||||
|
||||
ret = gst_cuda_memory_copy_transform_cuda (self, inbuf, in_info, in_cuda,
|
||||
|
|
Loading…
Reference in a new issue