dmabufallocator: Fix build if LINUX_DMA_BUF_H is missing

This commit is contained in:
Nicolas Dufresne 2018-03-21 18:15:49 -04:00
parent 8ee306eb3f
commit 681f41978a

View file

@ -48,9 +48,10 @@ static gpointer
gst_dmabuf_mem_map (GstMemory * gmem, GstMapInfo * info, gsize maxsize) gst_dmabuf_mem_map (GstMemory * gmem, GstMapInfo * info, gsize maxsize)
{ {
GstAllocator *allocator = gmem->allocator; GstAllocator *allocator = gmem->allocator;
gpointer ret;
#ifdef HAVE_LINUX_DMA_BUF_H #ifdef HAVE_LINUX_DMA_BUF_H
struct dma_buf_sync sync = { DMA_BUF_SYNC_START }; struct dma_buf_sync sync = { DMA_BUF_SYNC_START };
gpointer ret;
if (info->flags & GST_MAP_READ) if (info->flags & GST_MAP_READ)
sync.flags |= DMA_BUF_SYNC_READ; sync.flags |= DMA_BUF_SYNC_READ;