2016-02-05 08:18:40 +00:00
|
|
|
/*
|
|
|
|
* GStreamer
|
|
|
|
* Copyright (C) 2015 Matthew Waters <matthew@centricular.com>
|
|
|
|
*
|
|
|
|
* 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., 51 Franklin St, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
2019-04-08 11:35:22 +00:00
|
|
|
#ifndef __GST_VULKAN_BUFFER_MEMORY_H__
|
|
|
|
#define __GST_VULKAN_BUFFER_MEMORY_H__
|
2016-02-05 08:18:40 +00:00
|
|
|
|
|
|
|
#include <gst/gst.h>
|
|
|
|
#include <gst/gstallocator.h>
|
|
|
|
#include <gst/gstmemory.h>
|
|
|
|
|
2019-05-20 03:46:56 +00:00
|
|
|
#include <gst/vulkan/gstvkbarrier.h>
|
2019-04-08 11:35:22 +00:00
|
|
|
#include <gst/vulkan/vulkan.h>
|
2016-02-05 08:18:40 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
#define GST_TYPE_VULKAN_BUFFER_MEMORY_ALLOCATOR (gst_vulkan_buffer_memory_allocator_get_type())
|
2019-04-08 11:35:22 +00:00
|
|
|
GST_VULKAN_API
|
2016-02-05 08:18:40 +00:00
|
|
|
GType gst_vulkan_buffer_memory_allocator_get_type(void);
|
|
|
|
|
|
|
|
#define GST_IS_VULKAN_BUFFER_MEMORY_ALLOCATOR(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), GST_TYPE_VULKAN_BUFFER_MEMORY_ALLOCATOR))
|
|
|
|
#define GST_IS_VULKAN_BUFFER_MEMORY_ALLOCATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), GST_TYPE_VULKAN_BUFFER_MEMORY_ALLOCATOR))
|
|
|
|
#define GST_VULKAN_BUFFER_MEMORY_ALLOCATOR_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), GST_TYPE_VULKAN_MEMORY_ALLOCATOR, GstVulkanBufferMemoryAllocatorClass))
|
|
|
|
#define GST_VULKAN_BUFFER_MEMORY_ALLOCATOR(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), GST_TYPE_VULKAN_MEMORY_ALLOCATOR, GstVulkanBufferMemoryAllocator))
|
|
|
|
#define GST_VULKAN_BUFFER_MEMORY_ALLOCATOR_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), GST_TYPE_VULKAN_MEMORY_ALLOCATOR, GstVulkanBufferMemoryAllocatorClass))
|
2020-08-12 05:59:01 +00:00
|
|
|
/**
|
|
|
|
* GST_VULKAN_BUFFER_MEMORY_ALLOCATOR_CAST:
|
|
|
|
*
|
|
|
|
* Since: 1.18
|
|
|
|
*/
|
2016-02-05 08:18:40 +00:00
|
|
|
#define GST_VULKAN_BUFFER_MEMORY_ALLOCATOR_CAST(obj) ((GstVulkanBufferMemoryAllocator *)(obj))
|
|
|
|
|
2020-08-12 05:59:01 +00:00
|
|
|
/**
|
|
|
|
* GST_VULKAN_BUFFER_MEMORY_ALLOCATOR_NAME:
|
|
|
|
*
|
|
|
|
* Since: 1.18
|
|
|
|
*/
|
2016-02-05 08:18:40 +00:00
|
|
|
#define GST_VULKAN_BUFFER_MEMORY_ALLOCATOR_NAME "VulkanBuffer"
|
2020-08-12 05:59:01 +00:00
|
|
|
/**
|
|
|
|
* GST_CAPS_FEATURE_MEMORY_VULKAN_BUFFER:
|
|
|
|
*
|
|
|
|
* Since: 1.18
|
|
|
|
*/
|
2019-04-11 06:52:54 +00:00
|
|
|
#define GST_CAPS_FEATURE_MEMORY_VULKAN_BUFFER "memory:VulkanBuffer"
|
2016-02-05 08:18:40 +00:00
|
|
|
|
2020-08-12 05:59:01 +00:00
|
|
|
/**
|
|
|
|
* GstVulkanBarrierBufferInfo:
|
|
|
|
* @parent: parent #GstVulkanBarrierMemoryInfo
|
|
|
|
* @offset: offset into the vulkan buffer to execute the barrier with
|
|
|
|
* @size: size of memory to execute barrier over
|
|
|
|
*
|
|
|
|
* Since: 1.18
|
|
|
|
*/
|
2019-05-20 03:46:56 +00:00
|
|
|
struct _GstVulkanBarrierBufferInfo
|
|
|
|
{
|
|
|
|
GstVulkanBarrierMemoryInfo parent;
|
|
|
|
|
|
|
|
VkDeviceSize offset;
|
|
|
|
VkDeviceSize size;
|
|
|
|
};
|
2020-08-12 05:59:01 +00:00
|
|
|
/**
|
|
|
|
* GstVulkanBufferMemory:
|
|
|
|
* @parent: parent #GstMemory
|
|
|
|
* @device: the #GstVulkanDevice this vulkan buffer is allocated from
|
|
|
|
* @buffer: Vulkan buffer object
|
|
|
|
* @vk_mem: backing #GstVulkanMemory for @buffer
|
|
|
|
* @requirements: allocation requirements for @buffer
|
|
|
|
* @usage: intended usage for @buffer
|
|
|
|
* @barrier: the last set barrier information
|
|
|
|
*
|
|
|
|
* Since: 1.18
|
|
|
|
*/
|
2016-02-05 08:18:40 +00:00
|
|
|
struct _GstVulkanBufferMemory
|
|
|
|
{
|
|
|
|
GstMemory parent;
|
|
|
|
|
|
|
|
GstVulkanDevice * device;
|
|
|
|
|
|
|
|
VkBuffer buffer;
|
|
|
|
GstVulkanMemory *vk_mem;
|
|
|
|
|
|
|
|
VkMemoryRequirements requirements;
|
2016-02-08 01:22:11 +00:00
|
|
|
VkBufferUsageFlags usage;
|
2016-02-05 08:18:40 +00:00
|
|
|
|
2019-05-20 03:46:56 +00:00
|
|
|
GstVulkanBarrierBufferInfo barrier;
|
|
|
|
|
2020-08-12 05:59:01 +00:00
|
|
|
/* <private> */
|
2016-02-05 08:18:40 +00:00
|
|
|
GMutex lock;
|
|
|
|
gboolean wrapped;
|
|
|
|
GDestroyNotify notify;
|
|
|
|
gpointer user_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVulkanBufferMemoryAllocator
|
2020-08-12 05:59:01 +00:00
|
|
|
* @parent: the parent #GstAllocator
|
2016-02-05 08:18:40 +00:00
|
|
|
*
|
|
|
|
* Opaque #GstVulkanBufferMemoryAllocator struct
|
2020-08-12 05:59:01 +00:00
|
|
|
*
|
|
|
|
* Since: 1.18
|
2016-02-05 08:18:40 +00:00
|
|
|
*/
|
|
|
|
struct _GstVulkanBufferMemoryAllocator
|
|
|
|
{
|
|
|
|
GstAllocator parent;
|
2020-08-12 05:59:01 +00:00
|
|
|
|
|
|
|
/* <private> */
|
|
|
|
gpointer _reserved [GST_PADDING];
|
2016-02-05 08:18:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GstVulkanBufferMemoryAllocatorClass:
|
2020-08-12 05:59:01 +00:00
|
|
|
* @parent_class: the parent #GstAllocatorClass
|
2016-02-05 08:18:40 +00:00
|
|
|
*
|
|
|
|
* The #GstVulkanBufferMemoryAllocatorClass only contains private data
|
2020-08-12 05:59:01 +00:00
|
|
|
*
|
|
|
|
* Since: 1.18
|
2016-02-05 08:18:40 +00:00
|
|
|
*/
|
|
|
|
struct _GstVulkanBufferMemoryAllocatorClass
|
|
|
|
{
|
|
|
|
GstAllocatorClass parent_class;
|
2020-08-12 05:59:01 +00:00
|
|
|
|
|
|
|
/* <private> */
|
|
|
|
gpointer _reserved [GST_PADDING];
|
2016-02-05 08:18:40 +00:00
|
|
|
};
|
|
|
|
|
2019-04-08 11:35:22 +00:00
|
|
|
GST_VULKAN_API
|
2016-02-05 08:18:40 +00:00
|
|
|
void gst_vulkan_buffer_memory_init_once (void);
|
2019-04-08 11:35:22 +00:00
|
|
|
GST_VULKAN_API
|
2016-02-05 08:18:40 +00:00
|
|
|
gboolean gst_is_vulkan_buffer_memory (GstMemory * mem);
|
|
|
|
|
2019-04-08 11:35:22 +00:00
|
|
|
GST_VULKAN_API
|
2016-02-05 08:18:40 +00:00
|
|
|
GstMemory * gst_vulkan_buffer_memory_alloc (GstVulkanDevice * device,
|
|
|
|
gsize size,
|
|
|
|
VkBufferUsageFlags usage,
|
|
|
|
VkMemoryPropertyFlags mem_prop_flags);
|
|
|
|
|
2019-04-08 11:35:22 +00:00
|
|
|
GST_VULKAN_API
|
2016-02-05 08:18:40 +00:00
|
|
|
GstMemory * gst_vulkan_buffer_memory_wrapped (GstVulkanDevice * device,
|
|
|
|
VkBuffer buffer,
|
|
|
|
VkBufferUsageFlags usage,
|
|
|
|
gpointer user_data,
|
|
|
|
GDestroyNotify notify);
|
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2019-04-08 11:35:22 +00:00
|
|
|
#endif /* __GST_VULKAN_BUFFER_MEMORY_H__ */
|