| /* |
| * 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. |
| */ |
| |
| #ifdef HAVE_CONFIG_H |
| #include "config.h" |
| #endif |
| |
| #include <string.h> |
| |
| #include "vkmemory.h" |
| |
| /** |
| * SECTION:vkmemory |
| * @short_description: memory subclass for Vulkan device memory |
| * @see_also: #GstMemory, #GstAllocator |
| * |
| * GstVulkanMemory is a #GstMemory subclass providing support for the mapping of |
| * Vulkan device memory. |
| */ |
| |
| #define GST_CAT_DEFUALT GST_CAT_VULKAN_MEMORY |
| GST_DEBUG_CATEGORY_STATIC (GST_CAT_DEFUALT); |
| |
| static GstAllocator *_vulkan_memory_allocator; |
| |
| static void |
| _vk_mem_init (GstVulkanMemory * mem, GstAllocator * allocator, |
| GstMemory * parent, GstVulkanDevice * device, guint32 memory_type_index, |
| GstAllocationParams * params, gsize size, |
| VkMemoryPropertyFlags mem_prop_flags, gpointer user_data, |
| GDestroyNotify notify) |
| { |
| gsize align = gst_memory_alignment, offset = 0, maxsize = size; |
| GstMemoryFlags flags = 0; |
| |
| if (params) { |
| flags = params->flags; |
| align |= params->align; |
| offset = params->prefix; |
| maxsize += params->prefix + params->padding; |
| if ((maxsize & align) != 0) |
| maxsize += ~(maxsize & align) + 1; |
| } |
| |
| gst_memory_init (GST_MEMORY_CAST (mem), flags, allocator, parent, maxsize, |
| align, offset, size); |
| |
| mem->device = gst_object_ref (device); |
| mem->alloc_info.sType = VK_STRUCTURE_TYPE_MEMORY_ALLOC_INFO; |
| mem->alloc_info.pNext = NULL; |
| mem->alloc_info.allocationSize = (VkDeviceSize) mem->mem.maxsize; |
| mem->alloc_info.memoryTypeIndex = memory_type_index; |
| mem->properties = mem_prop_flags; |
| mem->notify = notify; |
| mem->user_data = user_data; |
| |
| g_mutex_init (&mem->lock); |
| |
| GST_CAT_DEBUG (GST_CAT_VULKAN_MEMORY, "new GL buffer memory:%p size:%" |
| G_GSIZE_FORMAT, mem, maxsize); |
| } |
| |
| static GstVulkanMemory * |
| _vk_mem_new (GstAllocator * allocator, GstMemory * parent, |
| GstVulkanDevice * device, guint32 memory_type_index, |
| GstAllocationParams * params, gsize size, |
| VkMemoryPropertyFlags mem_props_flags, gpointer user_data, |
| GDestroyNotify notify) |
| { |
| GstVulkanMemory *mem = g_slice_new0 (GstVulkanMemory); |
| GError *error = NULL; |
| VkResult err; |
| |
| _vk_mem_init (mem, allocator, parent, device, memory_type_index, params, |
| size, mem_props_flags, user_data, notify); |
| |
| err = vkAllocMemory (device->device, &mem->alloc_info, &mem->mem_ptr); |
| if (gst_vulkan_error_to_g_error (err, &error, "vkAllocMemory") < 0) { |
| GST_CAT_ERROR (GST_CAT_VULKAN_MEMORY, "Failed to allocate device memory %s", |
| error->message); |
| gst_memory_unref ((GstMemory *) mem); |
| g_clear_error (&error); |
| return NULL; |
| } |
| |
| return mem; |
| } |
| |
| static gpointer |
| _vk_mem_map_full (GstVulkanMemory * mem, GstMapInfo * info, gsize size) |
| { |
| gpointer data; |
| VkResult err; |
| GError *error = NULL; |
| |
| if ((mem->properties & VK_MEMORY_PROPERTY_HOST_VISIBLE_BIT) == 0) { |
| GST_CAT_ERROR (GST_CAT_VULKAN_MEMORY, "Cannot map host-invisible memory"); |
| return NULL; |
| } |
| |
| err = vkMapMemory (mem->device->device, mem->mem_ptr, 0, size, 0, &data); |
| if (gst_vulkan_error_to_g_error (err, &error, "vkMapMemory") < 0) { |
| GST_CAT_ERROR (GST_CAT_VULKAN_MEMORY, "Failed to map device memory %s", |
| error->message); |
| g_clear_error (&error); |
| return NULL; |
| } |
| |
| return data; |
| } |
| |
| static void |
| _vk_mem_unmap_full (GstVulkanMemory * mem, GstMapInfo * info) |
| { |
| vkUnmapMemory (mem->device->device, mem->mem_ptr); |
| } |
| |
| static GstMemory * |
| _vk_mem_copy (GstVulkanMemory * src, gssize offset, gssize size) |
| { |
| return NULL; |
| } |
| |
| static GstMemory * |
| _vk_mem_share (GstVulkanMemory * mem, gssize offset, gssize size) |
| { |
| return NULL; |
| } |
| |
| static gboolean |
| _vk_mem_is_span (GstVulkanMemory * mem1, GstVulkanMemory * mem2, gsize * offset) |
| { |
| return FALSE; |
| } |
| |
| static GstMemory * |
| _vk_mem_alloc (GstAllocator * allocator, gsize size, |
| GstAllocationParams * params) |
| { |
| g_critical ("Subclass should override GstAllocatorClass::alloc() function"); |
| |
| return NULL; |
| } |
| |
| static void |
| _vk_mem_free (GstAllocator * allocator, GstMemory * memory) |
| { |
| GstVulkanMemory *mem = (GstVulkanMemory *) memory; |
| |
| GST_CAT_TRACE (GST_CAT_VULKAN_MEMORY, "freeing buffer memory:%p " |
| "id:%" G_GUINT64_FORMAT, mem, mem->mem_ptr.handle); |
| |
| g_mutex_clear (&mem->lock); |
| |
| if (mem->notify) |
| mem->notify (mem->user_data); |
| |
| vkFreeMemory (mem->device->device, mem->mem_ptr); |
| |
| gst_object_unref (mem->device); |
| } |
| |
| /** |
| * gst_vulkan_memory_alloc: |
| * @device:a #GstVulkanDevice |
| * @memory_type_index: the Vulkan memory type index |
| * @params: a #GstAllocationParams |
| * @size: the size to allocate |
| * |
| * Allocated a new #GstVulkanMemory. |
| * |
| * Returns: a #GstMemory object backed by a vulkan device memory |
| */ |
| GstMemory * |
| gst_vulkan_memory_alloc (GstVulkanDevice * device, guint32 memory_type_index, |
| GstAllocationParams * params, gsize size, VkMemoryPropertyFlags mem_flags) |
| { |
| GstVulkanMemory *mem; |
| |
| mem = _vk_mem_new (_vulkan_memory_allocator, NULL, device, memory_type_index, |
| params, size, mem_flags, NULL, NULL); |
| |
| return (GstMemory *) mem; |
| } |
| |
| G_DEFINE_TYPE (GstVulkanMemoryAllocator, gst_vulkan_memory_allocator, |
| GST_TYPE_ALLOCATOR); |
| |
| static void |
| gst_vulkan_memory_allocator_class_init (GstVulkanMemoryAllocatorClass * klass) |
| { |
| GstAllocatorClass *allocator_class = (GstAllocatorClass *) klass; |
| |
| allocator_class->alloc = _vk_mem_alloc; |
| allocator_class->free = _vk_mem_free; |
| } |
| |
| static void |
| gst_vulkan_memory_allocator_init (GstVulkanMemoryAllocator * allocator) |
| { |
| GstAllocator *alloc = GST_ALLOCATOR_CAST (allocator); |
| |
| alloc->mem_type = GST_VULKAN_MEMORY_ALLOCATOR_NAME; |
| alloc->mem_map_full = (GstMemoryMapFullFunction) _vk_mem_map_full; |
| alloc->mem_unmap_full = (GstMemoryUnmapFullFunction) _vk_mem_unmap_full; |
| alloc->mem_copy = (GstMemoryCopyFunction) _vk_mem_copy; |
| alloc->mem_share = (GstMemoryShareFunction) _vk_mem_share; |
| alloc->mem_is_span = (GstMemoryIsSpanFunction) _vk_mem_is_span; |
| } |
| |
| /** |
| * gst_vulkan_memory_init_once: |
| * |
| * Initializes the Vulkan memory allocator. It is safe to call this function |
| * multiple times. This must be called before any other #GstVulkanMemory operation. |
| */ |
| void |
| gst_vulkan_memory_init_once (void) |
| { |
| static volatile gsize _init = 0; |
| |
| if (g_once_init_enter (&_init)) { |
| GST_DEBUG_CATEGORY_INIT (GST_CAT_VULKAN_MEMORY, "vulkanmemory", 0, |
| "Vulkan Memory"); |
| |
| _vulkan_memory_allocator = |
| g_object_new (gst_vulkan_memory_allocator_get_type (), NULL); |
| |
| gst_allocator_register (GST_VULKAN_MEMORY_ALLOCATOR_NAME, |
| gst_object_ref (_vulkan_memory_allocator)); |
| g_once_init_leave (&_init, 1); |
| } |
| } |
| |
| /** |
| * gst_is_vulkan_memory: |
| * @mem:a #GstMemory |
| * |
| * Returns: whether the memory at @mem is a #GstVulkanMemory |
| */ |
| gboolean |
| gst_is_vulkan_memory (GstMemory * mem) |
| { |
| return mem != NULL && mem->allocator != NULL && |
| g_type_is_a (G_OBJECT_TYPE (mem->allocator), |
| GST_TYPE_VULKAN_MEMORY_ALLOCATOR); |
| } |