mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
allocators: header clean-up
This commit is contained in:
parent
f56720fc7b
commit
320c992b94
1 changed files with 7 additions and 8 deletions
|
@ -1,7 +1,5 @@
|
|||
/*
|
||||
* gstdmabuf.h
|
||||
*
|
||||
* Copyright (C) Linaro SA 2013
|
||||
/* GStreamer dmabuf allocator
|
||||
* Copyright (C) 2013 Linaro SA
|
||||
* Author: Benjamin Gaignard <benjamin.gaignard@linaro.org> for Linaro.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
|
@ -19,17 +17,18 @@
|
|||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_DMABUF_H__
|
||||
#define __GST_DMABUF_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
|
||||
GstAllocator * gst_dmabuf_allocator_obtain(void);
|
||||
GstAllocator * gst_dmabuf_allocator_obtain (void);
|
||||
|
||||
GstMemory * gst_dmabuf_allocator_alloc(GstAllocator * allocator, gint fd, gsize size);
|
||||
GstMemory * gst_dmabuf_allocator_alloc (GstAllocator * allocator, gint fd, gsize size);
|
||||
|
||||
gint gst_dmabuf_memory_get_fd(GstMemory * mem);
|
||||
gint gst_dmabuf_memory_get_fd (GstMemory * mem);
|
||||
|
||||
gboolean gst_is_dmabuf_memory(GstMemory * mem);
|
||||
gboolean gst_is_dmabuf_memory (GstMemory * mem);
|
||||
|
||||
#endif /* __GST_DMABUF_H__ */
|
||||
|
|
Loading…
Reference in a new issue