2013-02-19 09:35:10 +00:00
|
|
|
/* GStreamer dmabuf allocator
|
|
|
|
* Copyright (C) 2013 Linaro SA
|
2013-02-18 14:18:38 +00:00
|
|
|
* Author: Benjamin Gaignard <benjamin.gaignard@linaro.org> for Linaro.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2013-02-19 09:35:10 +00:00
|
|
|
|
2013-02-18 14:18:38 +00:00
|
|
|
#ifndef __GST_DMABUF_H__
|
|
|
|
#define __GST_DMABUF_H__
|
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
|
2013-07-15 13:23:17 +00:00
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_ALLOCATOR_DMABUF "dmabuf"
|
|
|
|
|
2013-02-19 09:35:10 +00:00
|
|
|
GstAllocator * gst_dmabuf_allocator_obtain (void);
|
2013-02-18 14:18:38 +00:00
|
|
|
|
2013-02-19 09:35:10 +00:00
|
|
|
GstMemory * gst_dmabuf_allocator_alloc (GstAllocator * allocator, gint fd, gsize size);
|
2013-02-18 14:18:38 +00:00
|
|
|
|
2013-02-19 09:35:10 +00:00
|
|
|
gint gst_dmabuf_memory_get_fd (GstMemory * mem);
|
2013-02-18 14:18:38 +00:00
|
|
|
|
2013-02-19 09:35:10 +00:00
|
|
|
gboolean gst_is_dmabuf_memory (GstMemory * mem);
|
2013-02-18 14:18:38 +00:00
|
|
|
|
2013-07-15 13:23:17 +00:00
|
|
|
G_END_DECLS
|
2013-02-18 14:18:38 +00:00
|
|
|
#endif /* __GST_DMABUF_H__ */
|