2023-09-10 14:34:26 +00:00
|
|
|
/* GStreamer
|
|
|
|
* Copyright (C) 2023 Seungha Yang <seungha@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
|
|
|
|
|
2023-12-13 15:50:01 +00:00
|
|
|
#include <directx/d3dx12.h>
|
2023-09-10 14:34:26 +00:00
|
|
|
#include "gstd3d12memory.h"
|
2023-12-14 11:22:35 +00:00
|
|
|
#include "gstd3d12memory-private.h"
|
2023-09-10 14:34:26 +00:00
|
|
|
#include "gstd3d12device.h"
|
|
|
|
#include "gstd3d12utils.h"
|
|
|
|
#include "gstd3d12format.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include <wrl.h>
|
|
|
|
#include <mutex>
|
|
|
|
#include <condition_variable>
|
|
|
|
#include <atomic>
|
|
|
|
#include <queue>
|
2023-12-25 07:14:39 +00:00
|
|
|
#include <vector>
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-09-17 15:44:10 +00:00
|
|
|
/* *INDENT-OFF* */
|
|
|
|
using namespace Microsoft::WRL;
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
2023-09-10 14:34:26 +00:00
|
|
|
GST_DEBUG_CATEGORY_EXTERN (gst_d3d12_allocator_debug);
|
|
|
|
#define GST_CAT_DEFAULT gst_d3d12_allocator_debug
|
|
|
|
|
|
|
|
static GstD3D12Allocator *_d3d12_memory_allocator = nullptr;
|
|
|
|
|
2023-09-17 15:44:10 +00:00
|
|
|
static gint
|
|
|
|
gst_d3d12_allocation_params_compare (const GstD3D12AllocationParams * p1,
|
|
|
|
const GstD3D12AllocationParams * p2)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (p1, -1);
|
|
|
|
g_return_val_if_fail (p2, -1);
|
|
|
|
|
|
|
|
if (p1 == p2)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_allocation_params_init (GType type)
|
|
|
|
{
|
|
|
|
static GstValueTable table = {
|
|
|
|
0, (GstValueCompareFunc) gst_d3d12_allocation_params_compare,
|
|
|
|
nullptr, nullptr
|
|
|
|
};
|
|
|
|
|
|
|
|
table.type = type;
|
|
|
|
gst_value_register (&table);
|
|
|
|
}
|
|
|
|
|
|
|
|
G_DEFINE_BOXED_TYPE_WITH_CODE (GstD3D12AllocationParams,
|
|
|
|
gst_d3d12_allocation_params,
|
|
|
|
(GBoxedCopyFunc) gst_d3d12_allocation_params_copy,
|
|
|
|
(GBoxedFreeFunc) gst_d3d12_allocation_params_free,
|
|
|
|
gst_d3d12_allocation_params_init (g_define_type_id));
|
|
|
|
|
|
|
|
GstD3D12AllocationParams *
|
|
|
|
gst_d3d12_allocation_params_new (GstD3D12Device * device,
|
|
|
|
const GstVideoInfo * info, GstD3D12AllocationFlags flags,
|
|
|
|
D3D12_RESOURCE_FLAGS resource_flags)
|
|
|
|
{
|
|
|
|
GstD3D12AllocationParams *ret;
|
|
|
|
GstD3D12Format d3d12_format;
|
|
|
|
GstVideoFormat format;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_D3D12_DEVICE (device), nullptr);
|
|
|
|
g_return_val_if_fail (info, nullptr);
|
|
|
|
|
|
|
|
format = GST_VIDEO_INFO_FORMAT (info);
|
|
|
|
if (!gst_d3d12_device_get_format (device, format, &d3d12_format)) {
|
|
|
|
GST_WARNING_OBJECT (device, "%s is not supported",
|
|
|
|
gst_video_format_to_string (format));
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = g_new0 (GstD3D12AllocationParams, 1);
|
|
|
|
ret->info = *info;
|
|
|
|
ret->aligned_info = *info;
|
|
|
|
ret->d3d12_format = d3d12_format;
|
2023-12-14 11:22:35 +00:00
|
|
|
ret->array_size = 1;
|
2023-09-17 15:44:10 +00:00
|
|
|
ret->flags = flags;
|
2023-12-14 11:22:35 +00:00
|
|
|
ret->resource_flags = resource_flags;
|
2023-09-17 15:44:10 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstD3D12AllocationParams *
|
|
|
|
gst_d3d12_allocation_params_copy (GstD3D12AllocationParams * src)
|
|
|
|
{
|
|
|
|
GstD3D12AllocationParams *dst;
|
|
|
|
|
|
|
|
g_return_val_if_fail (src != NULL, NULL);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-09-17 15:44:10 +00:00
|
|
|
dst = g_new0 (GstD3D12AllocationParams, 1);
|
|
|
|
memcpy (dst, src, sizeof (GstD3D12AllocationParams));
|
|
|
|
|
|
|
|
return dst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gst_d3d12_allocation_params_free (GstD3D12AllocationParams * params)
|
|
|
|
{
|
|
|
|
g_free (params);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_d3d12_allocation_params_alignment (GstD3D12AllocationParams * params,
|
|
|
|
const GstVideoAlignment * align)
|
|
|
|
{
|
|
|
|
guint padding_width, padding_height;
|
|
|
|
GstVideoInfo *info;
|
|
|
|
GstVideoInfo new_info;
|
|
|
|
|
|
|
|
g_return_val_if_fail (params, FALSE);
|
|
|
|
g_return_val_if_fail (align, FALSE);
|
|
|
|
|
|
|
|
/* d3d11 does not support stride align. Consider padding only */
|
|
|
|
padding_width = align->padding_left + align->padding_right;
|
|
|
|
padding_height = align->padding_top + align->padding_bottom;
|
|
|
|
|
|
|
|
info = ¶ms->info;
|
|
|
|
|
|
|
|
if (!gst_video_info_set_format (&new_info, GST_VIDEO_INFO_FORMAT (info),
|
|
|
|
GST_VIDEO_INFO_WIDTH (info) + padding_width,
|
|
|
|
GST_VIDEO_INFO_HEIGHT (info) + padding_height)) {
|
|
|
|
GST_WARNING ("Set format failed");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
params->aligned_info = new_info;
|
|
|
|
|
2023-12-14 11:22:35 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_d3d12_allocation_params_set_resource_flags (GstD3D12AllocationParams *
|
|
|
|
params, D3D12_RESOURCE_FLAGS resource_flags)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (params, FALSE);
|
|
|
|
|
|
|
|
params->resource_flags |= resource_flags;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_d3d12_allocation_params_set_array_size (GstD3D12AllocationParams * params,
|
|
|
|
guint size)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (params, FALSE);
|
|
|
|
g_return_val_if_fail (size > 0, FALSE);
|
|
|
|
g_return_val_if_fail (size <= G_MAXUINT16, FALSE);
|
|
|
|
|
|
|
|
params->array_size = size;
|
2023-09-17 15:44:10 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-14 11:22:35 +00:00
|
|
|
|
2023-09-17 15:44:10 +00:00
|
|
|
/* *INDENT-OFF* */
|
2023-09-10 14:34:26 +00:00
|
|
|
struct _GstD3D12MemoryPrivate
|
|
|
|
{
|
2023-12-25 07:14:39 +00:00
|
|
|
~_GstD3D12MemoryPrivate ()
|
|
|
|
{
|
|
|
|
if (event_handle)
|
|
|
|
CloseHandle (event_handle);
|
|
|
|
}
|
|
|
|
|
2023-09-10 14:34:26 +00:00
|
|
|
ComPtr<ID3D12Resource> resource;
|
2023-09-17 14:53:18 +00:00
|
|
|
ComPtr<ID3D12Resource> staging;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
ComPtr<ID3D12DescriptorHeap> srv_heap;
|
|
|
|
ComPtr<ID3D12DescriptorHeap> rtv_heap;
|
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
gpointer staging_ptr = nullptr;
|
|
|
|
|
2023-09-10 14:34:26 +00:00
|
|
|
D3D12_RESOURCE_DESC desc;
|
2023-12-16 12:07:14 +00:00
|
|
|
|
|
|
|
HANDLE event_handle = nullptr;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
/* Queryied via ID3D12Device::GetCopyableFootprints */
|
|
|
|
D3D12_PLACED_SUBRESOURCE_FOOTPRINT layout[GST_VIDEO_MAX_PLANES];
|
|
|
|
guint64 size;
|
|
|
|
guint num_subresources;
|
|
|
|
guint subresource_index[GST_VIDEO_MAX_PLANES];
|
2023-12-16 12:07:14 +00:00
|
|
|
DXGI_FORMAT resource_formats[GST_VIDEO_MAX_PLANES];
|
|
|
|
guint srv_inc_size;
|
|
|
|
guint rtv_inc_size;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
std::mutex lock;
|
2023-09-10 14:34:26 +00:00
|
|
|
};
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
GST_DEFINE_MINI_OBJECT_TYPE (GstD3D12Memory, gst_d3d12_memory);
|
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
static gboolean
|
|
|
|
gst_d3d12_memory_ensure_staging_resource (GstD3D12Memory * dmem)
|
|
|
|
{
|
2023-12-25 07:14:39 +00:00
|
|
|
auto priv = dmem->priv;
|
2023-09-17 14:53:18 +00:00
|
|
|
|
|
|
|
if (priv->staging)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
if ((priv->desc.Flags & D3D12_RESOURCE_FLAG_ALLOW_SIMULTANEOUS_ACCESS) == 0) {
|
|
|
|
GST_ERROR_OBJECT (dmem->device, "simultaneous access is not supported");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
HRESULT hr;
|
2023-12-25 07:14:39 +00:00
|
|
|
auto device = gst_d3d12_device_get_device_handle (dmem->device);
|
2023-09-17 14:53:18 +00:00
|
|
|
D3D12_HEAP_PROPERTIES prop =
|
2023-12-25 07:14:39 +00:00
|
|
|
CD3DX12_HEAP_PROPERTIES (D3D12_CPU_PAGE_PROPERTY_WRITE_BACK,
|
|
|
|
D3D12_MEMORY_POOL_L0);
|
2023-12-13 15:50:01 +00:00
|
|
|
D3D12_RESOURCE_DESC desc = CD3DX12_RESOURCE_DESC::Buffer (priv->size);
|
2023-09-17 14:53:18 +00:00
|
|
|
ComPtr < ID3D12Resource > staging;
|
|
|
|
hr = device->CreateCommittedResource (&prop, D3D12_HEAP_FLAG_NONE,
|
2023-12-25 07:14:39 +00:00
|
|
|
&desc, D3D12_RESOURCE_STATE_COMMON, nullptr, IID_PPV_ARGS (&staging));
|
2023-09-17 14:53:18 +00:00
|
|
|
if (!gst_d3d12_result (hr, dmem->device)) {
|
2023-12-25 07:14:39 +00:00
|
|
|
GST_ERROR_OBJECT (dmem->device, "Couldn't create staging resource");
|
2023-09-17 14:53:18 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And map persistently */
|
|
|
|
hr = staging->Map (0, nullptr, &priv->staging_ptr);
|
|
|
|
if (!gst_d3d12_result (hr, dmem->device)) {
|
|
|
|
GST_ERROR_OBJECT (dmem->device, "Couldn't map readback resource");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->staging = staging;
|
|
|
|
|
|
|
|
GST_MINI_OBJECT_FLAG_SET (dmem, GST_D3D12_MEMORY_TRANSFER_NEED_DOWNLOAD);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
static void
|
|
|
|
gst_d3d12_memory_wait_gpu (GstD3D12Memory * dmem,
|
|
|
|
D3D12_COMMAND_LIST_TYPE command_type, guint64 fence_value)
|
|
|
|
{
|
|
|
|
auto priv = dmem->priv;
|
|
|
|
auto completed = gst_d3d12_device_get_completed_value (dmem->device,
|
|
|
|
command_type);
|
|
|
|
if (completed < fence_value) {
|
|
|
|
if (!priv->event_handle) {
|
|
|
|
priv->event_handle =
|
|
|
|
CreateEventEx (nullptr, nullptr, 0, EVENT_ALL_ACCESS);
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_d3d12_device_fence_wait (dmem->device, command_type,
|
|
|
|
fence_value, priv->event_handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
static gboolean
|
|
|
|
gst_d3d12_memory_download (GstD3D12Memory * dmem)
|
|
|
|
{
|
2023-12-25 07:14:39 +00:00
|
|
|
auto priv = dmem->priv;
|
2023-09-17 14:53:18 +00:00
|
|
|
|
|
|
|
if (!priv->staging ||
|
|
|
|
!GST_MEMORY_FLAG_IS_SET (dmem, GST_D3D12_MEMORY_TRANSFER_NEED_DOWNLOAD)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
std::vector < GstD3D12CopyTextureRegionArgs > copy_args;
|
2023-09-17 14:53:18 +00:00
|
|
|
for (guint i = 0; i < priv->num_subresources; i++) {
|
2023-12-25 07:14:39 +00:00
|
|
|
GstD3D12CopyTextureRegionArgs args;
|
|
|
|
memset (&args, 0, sizeof (args));
|
|
|
|
|
|
|
|
args.dst = CD3DX12_TEXTURE_COPY_LOCATION (priv->staging.Get (),
|
|
|
|
priv->layout[i]);
|
|
|
|
args.src = CD3DX12_TEXTURE_COPY_LOCATION (priv->resource.Get (),
|
2023-09-17 14:53:18 +00:00
|
|
|
priv->subresource_index[i]);
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
copy_args.push_back (args);
|
2023-09-17 14:53:18 +00:00
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
gst_d3d12_memory_wait_gpu (dmem, D3D12_COMMAND_LIST_TYPE_DIRECT,
|
|
|
|
dmem->fence_value);
|
2023-09-17 14:53:18 +00:00
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
guint64 fence_val = 0;
|
|
|
|
/* Use async copy queue when downloading */
|
|
|
|
if (!gst_d3d12_device_copy_texture_region (dmem->device, copy_args.size (),
|
|
|
|
copy_args.data (), D3D12_COMMAND_LIST_TYPE_COPY, &fence_val)) {
|
|
|
|
GST_ERROR_OBJECT (dmem->device, "Couldn't download texture to staging");
|
2023-09-17 14:53:18 +00:00
|
|
|
return FALSE;
|
2023-12-25 07:14:39 +00:00
|
|
|
}
|
2023-09-17 14:53:18 +00:00
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
gst_d3d12_memory_wait_gpu (dmem, D3D12_COMMAND_LIST_TYPE_COPY, fence_val);
|
2023-09-17 14:53:18 +00:00
|
|
|
|
|
|
|
GST_MEMORY_FLAG_UNSET (dmem, GST_D3D12_MEMORY_TRANSFER_NEED_DOWNLOAD);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_d3d12_memory_upload (GstD3D12Memory * dmem)
|
|
|
|
{
|
2023-12-25 07:14:39 +00:00
|
|
|
auto priv = dmem->priv;
|
2023-09-17 14:53:18 +00:00
|
|
|
|
|
|
|
if (!priv->staging ||
|
|
|
|
!GST_MEMORY_FLAG_IS_SET (dmem, GST_D3D12_MEMORY_TRANSFER_NEED_UPLOAD)) {
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
std::vector < GstD3D12CopyTextureRegionArgs > copy_args;
|
2023-09-17 14:53:18 +00:00
|
|
|
for (guint i = 0; i < priv->num_subresources; i++) {
|
2023-12-25 07:14:39 +00:00
|
|
|
GstD3D12CopyTextureRegionArgs args;
|
|
|
|
memset (&args, 0, sizeof (args));
|
|
|
|
|
|
|
|
args.dst = CD3DX12_TEXTURE_COPY_LOCATION (priv->resource.Get (),
|
2023-09-17 14:53:18 +00:00
|
|
|
priv->subresource_index[i]);
|
2023-12-25 07:14:39 +00:00
|
|
|
args.src = CD3DX12_TEXTURE_COPY_LOCATION (priv->staging.Get (),
|
|
|
|
priv->layout[i]);
|
2023-09-17 14:53:18 +00:00
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
copy_args.push_back (args);
|
2023-09-17 14:53:18 +00:00
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
if (!gst_d3d12_device_copy_texture_region (dmem->device, copy_args.size (),
|
|
|
|
copy_args.data (), D3D12_COMMAND_LIST_TYPE_DIRECT,
|
|
|
|
&dmem->fence_value)) {
|
|
|
|
GST_ERROR_OBJECT (dmem->device, "Couldn't upload texture");
|
2023-09-17 14:53:18 +00:00
|
|
|
return FALSE;
|
2023-12-25 07:14:39 +00:00
|
|
|
}
|
2023-09-17 14:53:18 +00:00
|
|
|
|
|
|
|
GST_MEMORY_FLAG_UNSET (dmem, GST_D3D12_MEMORY_TRANSFER_NEED_UPLOAD);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-09-10 14:34:26 +00:00
|
|
|
static gpointer
|
|
|
|
gst_d3d12_memory_map_full (GstMemory * mem, GstMapInfo * info, gsize maxsize)
|
|
|
|
{
|
2023-12-25 07:14:39 +00:00
|
|
|
auto dmem = GST_D3D12_MEMORY_CAST (mem);
|
|
|
|
auto priv = dmem->priv;
|
2023-09-10 14:34:26 +00:00
|
|
|
GstMapFlags flags = info->flags;
|
2023-09-17 14:53:18 +00:00
|
|
|
std::lock_guard < std::mutex > lk (priv->lock);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
if ((flags & GST_MAP_D3D12) != 0) {
|
|
|
|
gst_d3d12_memory_upload (dmem);
|
2023-09-17 14:53:18 +00:00
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
if ((flags & GST_MAP_WRITE) != 0)
|
2023-09-17 14:53:18 +00:00
|
|
|
GST_MINI_OBJECT_FLAG_SET (dmem, GST_D3D12_MEMORY_TRANSFER_NEED_DOWNLOAD);
|
|
|
|
|
|
|
|
return priv->resource.Get ();
|
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
if (!gst_d3d12_memory_ensure_staging_resource (dmem)) {
|
|
|
|
GST_ERROR_OBJECT (mem->allocator,
|
|
|
|
"Couldn't create readback_staging resource");
|
|
|
|
return nullptr;
|
|
|
|
}
|
2023-09-17 14:53:18 +00:00
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
if (!gst_d3d12_memory_download (dmem)) {
|
|
|
|
GST_ERROR_OBJECT (mem->allocator, "Couldn't download resource");
|
|
|
|
return nullptr;
|
2023-09-10 14:34:26 +00:00
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
if ((flags & GST_MAP_WRITE) != 0)
|
|
|
|
GST_MINI_OBJECT_FLAG_SET (mem, GST_D3D12_MEMORY_TRANSFER_NEED_UPLOAD);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
return priv->staging_ptr;
|
2023-09-10 14:34:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_memory_unmap_full (GstMemory * mem, GstMapInfo * info)
|
|
|
|
{
|
2023-12-25 07:14:39 +00:00
|
|
|
/* Nothing to do here */
|
2023-09-10 14:34:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstMemory *
|
|
|
|
gst_d3d12_memory_share (GstMemory * mem, gssize offset, gssize size)
|
|
|
|
{
|
|
|
|
/* TODO: impl. */
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_is_d3d12_memory (GstMemory * mem)
|
|
|
|
{
|
|
|
|
return mem != nullptr && mem->allocator != nullptr &&
|
|
|
|
(GST_IS_D3D12_ALLOCATOR (mem->allocator) ||
|
|
|
|
GST_IS_D3D12_POOL_ALLOCATOR (mem->allocator));
|
|
|
|
}
|
|
|
|
|
2023-12-21 11:49:39 +00:00
|
|
|
gboolean
|
|
|
|
gst_d3d12_memory_sync (GstD3D12Memory * mem)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (gst_is_d3d12_memory (GST_MEMORY_CAST (mem)), FALSE);
|
|
|
|
|
|
|
|
gst_d3d12_memory_upload (mem);
|
|
|
|
gst_d3d12_memory_wait_gpu (mem,
|
|
|
|
D3D12_COMMAND_LIST_TYPE_DIRECT, mem->fence_value);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-09-10 14:34:26 +00:00
|
|
|
void
|
|
|
|
gst_d3d12_memory_init_once (void)
|
|
|
|
{
|
|
|
|
GST_D3D12_CALL_ONCE_BEGIN {
|
|
|
|
_d3d12_memory_allocator =
|
|
|
|
(GstD3D12Allocator *) g_object_new (GST_TYPE_D3D12_ALLOCATOR, nullptr);
|
|
|
|
gst_object_ref_sink (_d3d12_memory_allocator);
|
|
|
|
gst_object_ref (_d3d12_memory_allocator);
|
|
|
|
|
|
|
|
gst_allocator_register (GST_D3D12_MEMORY_NAME,
|
|
|
|
GST_ALLOCATOR_CAST (_d3d12_memory_allocator));
|
|
|
|
} GST_D3D12_CALL_ONCE_END;
|
|
|
|
}
|
|
|
|
|
|
|
|
ID3D12Resource *
|
|
|
|
gst_d3d12_memory_get_resource_handle (GstD3D12Memory * mem)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (gst_is_d3d12_memory (GST_MEMORY_CAST (mem)), FALSE);
|
|
|
|
|
|
|
|
return mem->priv->resource.Get ();
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_d3d12_memory_get_subresource_index (GstD3D12Memory * mem, guint plane,
|
|
|
|
guint * index)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (gst_is_d3d12_memory (GST_MEMORY_CAST (mem)), FALSE);
|
|
|
|
g_return_val_if_fail (index != nullptr, FALSE);
|
|
|
|
|
|
|
|
if (plane >= mem->priv->num_subresources) {
|
|
|
|
GST_WARNING_OBJECT (GST_MEMORY_CAST (mem)->allocator, "Invalid plane %d",
|
|
|
|
plane);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
*index = mem->priv->subresource_index[plane];
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-09-17 16:31:41 +00:00
|
|
|
guint
|
|
|
|
gst_d3d12_memory_get_plane_count (GstD3D12Memory * mem)
|
2023-09-10 14:34:26 +00:00
|
|
|
{
|
2023-09-17 16:31:41 +00:00
|
|
|
g_return_val_if_fail (gst_is_d3d12_memory (GST_MEMORY_CAST (mem)), 0);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-09-17 16:31:41 +00:00
|
|
|
return mem->priv->num_subresources;
|
2023-09-10 14:34:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_d3d12_memory_get_plane_size (GstD3D12Memory * mem, guint plane,
|
|
|
|
gint * width, gint * height, gint * stride, gsize * offset)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (gst_is_d3d12_memory (GST_MEMORY_CAST (mem)), FALSE);
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
auto priv = mem->priv;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
if (plane >= priv->num_subresources) {
|
|
|
|
GST_WARNING_OBJECT (GST_MEMORY_CAST (mem)->allocator, "Invalid plane %d",
|
|
|
|
plane);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (width)
|
|
|
|
*width = (gint) priv->layout[plane].Footprint.Width;
|
|
|
|
if (height)
|
|
|
|
*height = (gint) priv->layout[plane].Footprint.Height;
|
|
|
|
if (stride)
|
|
|
|
*stride = (gint) priv->layout[plane].Footprint.RowPitch;
|
|
|
|
if (offset)
|
|
|
|
*offset = (gsize) priv->layout[plane].Offset;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
gboolean
|
|
|
|
gst_d3d12_memory_create_shader_resource_view (GstD3D12Memory * mem,
|
|
|
|
guint plane, guint heap_offset, ID3D12DescriptorHeap * heap)
|
2023-09-10 14:34:26 +00:00
|
|
|
{
|
2023-12-16 12:07:14 +00:00
|
|
|
auto priv = mem->priv;
|
|
|
|
auto allocator = GST_MEMORY_CAST (mem)->allocator;
|
|
|
|
if ((priv->desc.Flags & D3D12_RESOURCE_FLAG_DENY_SHADER_RESOURCE) != 0) {
|
|
|
|
GST_LOG_OBJECT (allocator,
|
|
|
|
"Shader resource was denied, configured flags 0x%x",
|
|
|
|
(guint) priv->desc.Flags);
|
2023-09-10 14:34:26 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
if (priv->num_subresources <= plane) {
|
|
|
|
GST_ERROR_OBJECT (allocator, "Out of bound request");
|
2023-09-10 14:34:26 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
auto cpu_handle =
|
|
|
|
CD3DX12_CPU_DESCRIPTOR_HANDLE (heap->GetCPUDescriptorHandleForHeapStart
|
|
|
|
(), heap_offset, priv->srv_inc_size);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
D3D12_SHADER_RESOURCE_VIEW_DESC srv_desc = { };
|
|
|
|
srv_desc.ViewDimension = D3D12_SRV_DIMENSION_TEXTURE2D;
|
|
|
|
srv_desc.Shader4ComponentMapping = D3D12_DEFAULT_SHADER_4_COMPONENT_MAPPING;
|
|
|
|
srv_desc.Texture2D.MipLevels = 1;
|
|
|
|
srv_desc.Format = priv->resource_formats[plane];
|
|
|
|
srv_desc.Texture2D.PlaneSlice = plane;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
auto device = gst_d3d12_device_get_device_handle (mem->device);
|
|
|
|
device->CreateShaderResourceView (priv->resource.Get (),
|
|
|
|
&srv_desc, cpu_handle);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
gboolean
|
|
|
|
gst_d3d12_memory_get_shader_resource_view_heap (GstD3D12Memory * mem,
|
|
|
|
ID3D12DescriptorHeap ** heap)
|
2023-09-10 14:34:26 +00:00
|
|
|
{
|
2023-12-16 12:07:14 +00:00
|
|
|
auto priv = mem->priv;
|
|
|
|
auto allocator = GST_MEMORY_CAST (mem)->allocator;
|
2023-09-10 14:34:26 +00:00
|
|
|
if ((priv->desc.Flags & D3D12_RESOURCE_FLAG_DENY_SHADER_RESOURCE) != 0) {
|
2023-12-16 12:07:14 +00:00
|
|
|
GST_LOG_OBJECT (allocator,
|
|
|
|
"Shader resource was denied, configured flags 0x%x",
|
|
|
|
(guint) priv->desc.Flags);
|
2023-09-10 14:34:26 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
std::lock_guard < std::mutex > lk (priv->lock);
|
2023-12-16 12:07:14 +00:00
|
|
|
if (!priv->srv_heap) {
|
|
|
|
D3D12_DESCRIPTOR_HEAP_DESC desc = { };
|
|
|
|
desc.Type = D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV;
|
|
|
|
desc.NumDescriptors = priv->num_subresources;
|
|
|
|
desc.Flags = D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE;
|
|
|
|
|
|
|
|
auto device = gst_d3d12_device_get_device_handle (mem->device);
|
|
|
|
|
|
|
|
ComPtr < ID3D12DescriptorHeap > srv_heap;
|
|
|
|
auto hr = device->CreateDescriptorHeap (&desc, IID_PPV_ARGS (&srv_heap));
|
|
|
|
if (!gst_d3d12_result (hr, mem->device)) {
|
|
|
|
GST_ERROR_OBJECT (allocator, "Couldn't create descriptor heap");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
priv->srv_heap = srv_heap;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
D3D12_SHADER_RESOURCE_VIEW_DESC srv_desc = { };
|
|
|
|
srv_desc.ViewDimension = D3D12_SRV_DIMENSION_TEXTURE2D;
|
|
|
|
srv_desc.Shader4ComponentMapping = D3D12_DEFAULT_SHADER_4_COMPONENT_MAPPING;
|
|
|
|
srv_desc.Texture2D.MipLevels = 1;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
auto cpu_handle =
|
|
|
|
CD3DX12_CPU_DESCRIPTOR_HANDLE
|
|
|
|
(srv_heap->GetCPUDescriptorHandleForHeapStart ());
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
for (guint i = 0; i < priv->num_subresources; i++) {
|
|
|
|
srv_desc.Format = priv->resource_formats[i];
|
|
|
|
srv_desc.Texture2D.PlaneSlice = i;
|
|
|
|
device->CreateShaderResourceView (priv->resource.Get (), &srv_desc,
|
|
|
|
cpu_handle);
|
|
|
|
cpu_handle.Offset (priv->srv_inc_size);
|
|
|
|
}
|
2023-09-10 14:34:26 +00:00
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
*heap = priv->srv_heap.Get ();
|
|
|
|
(*heap)->AddRef ();
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
gboolean
|
|
|
|
gst_d3d12_memory_create_render_target_view (GstD3D12Memory * mem,
|
|
|
|
guint plane, guint heap_offset, ID3D12DescriptorHeap * heap)
|
2023-09-10 14:34:26 +00:00
|
|
|
{
|
2023-12-16 12:07:14 +00:00
|
|
|
auto priv = mem->priv;
|
|
|
|
auto allocator = GST_MEMORY_CAST (mem)->allocator;
|
|
|
|
if ((priv->desc.Flags & D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET) == 0) {
|
|
|
|
GST_LOG_OBJECT (allocator,
|
|
|
|
"Render target is not allowed, configured flags 0x%x",
|
|
|
|
(guint) priv->desc.Flags);
|
2023-09-10 14:34:26 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
if (priv->num_subresources <= plane) {
|
|
|
|
GST_ERROR_OBJECT (allocator, "Out of bound request");
|
2023-09-10 14:34:26 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
auto device = gst_d3d12_device_get_device_handle (mem->device);
|
|
|
|
auto cpu_handle =
|
|
|
|
CD3DX12_CPU_DESCRIPTOR_HANDLE (heap->GetCPUDescriptorHandleForHeapStart
|
|
|
|
(), heap_offset, priv->rtv_inc_size);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
D3D12_RENDER_TARGET_VIEW_DESC rtv_desc = { };
|
|
|
|
rtv_desc.ViewDimension = D3D12_RTV_DIMENSION_TEXTURE2D;
|
|
|
|
rtv_desc.Format = priv->resource_formats[plane];
|
|
|
|
rtv_desc.Texture2D.PlaneSlice = plane;
|
|
|
|
device->CreateRenderTargetView (priv->resource.Get (), &rtv_desc, cpu_handle);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
gboolean
|
|
|
|
gst_d3d12_memory_get_render_target_view_heap (GstD3D12Memory * mem,
|
|
|
|
ID3D12DescriptorHeap ** heap)
|
2023-09-10 14:34:26 +00:00
|
|
|
{
|
2023-12-16 12:07:14 +00:00
|
|
|
auto priv = mem->priv;
|
|
|
|
auto allocator = GST_MEMORY_CAST (mem)->allocator;
|
2023-09-10 14:34:26 +00:00
|
|
|
if ((priv->desc.Flags & D3D12_RESOURCE_FLAG_ALLOW_RENDER_TARGET) == 0) {
|
2023-12-16 12:07:14 +00:00
|
|
|
GST_LOG_OBJECT (allocator,
|
|
|
|
"Render target is not allowed, configured flags 0x%x",
|
|
|
|
(guint) priv->desc.Flags);
|
2023-09-10 14:34:26 +00:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
std::lock_guard < std::mutex > lk (priv->lock);
|
2023-12-16 12:07:14 +00:00
|
|
|
if (!priv->rtv_heap) {
|
|
|
|
D3D12_DESCRIPTOR_HEAP_DESC desc = { };
|
|
|
|
desc.Type = D3D12_DESCRIPTOR_HEAP_TYPE_RTV;
|
|
|
|
desc.NumDescriptors = priv->num_subresources;
|
|
|
|
desc.Flags = D3D12_DESCRIPTOR_HEAP_FLAG_NONE;
|
|
|
|
|
|
|
|
auto device = gst_d3d12_device_get_device_handle (mem->device);
|
|
|
|
|
|
|
|
ComPtr < ID3D12DescriptorHeap > rtv_heap;
|
|
|
|
auto hr = device->CreateDescriptorHeap (&desc, IID_PPV_ARGS (&rtv_heap));
|
|
|
|
if (!gst_d3d12_result (hr, mem->device)) {
|
|
|
|
GST_ERROR_OBJECT (allocator, "Couldn't create descriptor heap");
|
|
|
|
return FALSE;
|
|
|
|
}
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
priv->rtv_heap = rtv_heap;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
D3D12_RENDER_TARGET_VIEW_DESC rtv_desc = { };
|
|
|
|
rtv_desc.ViewDimension = D3D12_RTV_DIMENSION_TEXTURE2D;
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
auto cpu_handle =
|
|
|
|
CD3DX12_CPU_DESCRIPTOR_HANDLE
|
|
|
|
(rtv_heap->GetCPUDescriptorHandleForHeapStart ());
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
for (guint i = 0; i < priv->num_subresources; i++) {
|
|
|
|
rtv_desc.Format = priv->resource_formats[i];
|
|
|
|
rtv_desc.Texture2D.PlaneSlice = i;
|
|
|
|
device->CreateRenderTargetView (priv->resource.Get (), &rtv_desc,
|
|
|
|
cpu_handle);
|
|
|
|
cpu_handle.Offset (priv->rtv_inc_size);
|
|
|
|
}
|
2023-09-10 14:34:26 +00:00
|
|
|
}
|
|
|
|
|
2023-12-16 12:07:14 +00:00
|
|
|
*heap = priv->rtv_heap.Get ();
|
|
|
|
(*heap)->AddRef ();
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GstD3D12Allocator */
|
|
|
|
#define gst_d3d12_allocator_parent_class alloc_parent_class
|
|
|
|
G_DEFINE_TYPE (GstD3D12Allocator, gst_d3d12_allocator, GST_TYPE_ALLOCATOR);
|
|
|
|
|
|
|
|
static GstMemory *gst_d3d12_allocator_dummy_alloc (GstAllocator * allocator,
|
|
|
|
gsize size, GstAllocationParams * params);
|
|
|
|
static GstMemory *gst_d3d12_allocator_alloc_internal (GstD3D12Allocator * self,
|
|
|
|
GstD3D12Device * device, const D3D12_HEAP_PROPERTIES * heap_props,
|
|
|
|
D3D12_HEAP_FLAGS heap_flags, const D3D12_RESOURCE_DESC * desc,
|
|
|
|
D3D12_RESOURCE_STATES initial_state,
|
|
|
|
const D3D12_CLEAR_VALUE * optimized_clear_value);
|
|
|
|
static void gst_d3d12_allocator_free (GstAllocator * allocator,
|
|
|
|
GstMemory * mem);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_allocator_class_init (GstD3D12AllocatorClass * klass)
|
|
|
|
{
|
|
|
|
GstAllocatorClass *allocator_class = GST_ALLOCATOR_CLASS (klass);
|
|
|
|
|
|
|
|
allocator_class->alloc = gst_d3d12_allocator_dummy_alloc;
|
|
|
|
allocator_class->free = gst_d3d12_allocator_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_allocator_init (GstD3D12Allocator * allocator)
|
|
|
|
{
|
|
|
|
GstAllocator *alloc = GST_ALLOCATOR_CAST (allocator);
|
|
|
|
|
|
|
|
alloc->mem_type = GST_D3D12_MEMORY_NAME;
|
|
|
|
alloc->mem_map_full = gst_d3d12_memory_map_full;
|
|
|
|
alloc->mem_unmap_full = gst_d3d12_memory_unmap_full;
|
|
|
|
alloc->mem_share = gst_d3d12_memory_share;
|
|
|
|
|
|
|
|
GST_OBJECT_FLAG_SET (alloc, GST_ALLOCATOR_FLAG_CUSTOM_ALLOC);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstMemory *
|
|
|
|
gst_d3d12_allocator_dummy_alloc (GstAllocator * allocator, gsize size,
|
|
|
|
GstAllocationParams * params)
|
|
|
|
{
|
|
|
|
g_return_val_if_reached (nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_allocator_free (GstAllocator * allocator, GstMemory * mem)
|
|
|
|
{
|
2023-12-25 07:14:39 +00:00
|
|
|
auto dmem = GST_D3D12_MEMORY_CAST (mem);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
GST_LOG_OBJECT (allocator, "Free memory %p", mem);
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
gst_d3d12_memory_wait_gpu (dmem, D3D12_COMMAND_LIST_TYPE_DIRECT,
|
|
|
|
dmem->fence_value);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
delete dmem->priv;
|
|
|
|
|
2023-09-17 14:53:18 +00:00
|
|
|
gst_clear_object (&dmem->device);
|
|
|
|
|
2023-09-10 14:34:26 +00:00
|
|
|
g_free (dmem);
|
|
|
|
}
|
|
|
|
|
2023-12-23 16:28:26 +00:00
|
|
|
GstMemory *
|
|
|
|
gst_d3d12_allocator_alloc_wrapped (GstD3D12Allocator * allocator,
|
|
|
|
GstD3D12Device * device, ID3D12Resource * resource, guint array_slice)
|
2023-09-10 14:34:26 +00:00
|
|
|
{
|
2023-12-23 16:28:26 +00:00
|
|
|
g_return_val_if_fail (GST_IS_D3D12_DEVICE (device), nullptr);
|
|
|
|
g_return_val_if_fail (resource, nullptr);
|
|
|
|
|
|
|
|
if (!allocator) {
|
|
|
|
gst_d3d12_memory_init_once ();
|
|
|
|
allocator = _d3d12_memory_allocator;
|
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
auto device_handle = gst_d3d12_device_get_device_handle (device);
|
2023-12-23 16:28:26 +00:00
|
|
|
auto desc = resource->GetDesc ();
|
2023-09-10 14:34:26 +00:00
|
|
|
guint8 num_subresources =
|
2023-12-23 16:28:26 +00:00
|
|
|
D3D12GetFormatPlaneCount (device_handle, desc.Format);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
if (num_subresources == 0) {
|
2023-12-23 16:28:26 +00:00
|
|
|
GST_ERROR_OBJECT (allocator, "Couldn't get format info");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_slice >= desc.DepthOrArraySize) {
|
|
|
|
GST_ERROR_OBJECT (allocator, "Invalid array slice");
|
2023-09-10 14:34:26 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-12-25 07:14:39 +00:00
|
|
|
auto mem = g_new0 (GstD3D12Memory, 1);
|
|
|
|
mem->priv = new GstD3D12MemoryPrivate ();
|
|
|
|
|
|
|
|
auto priv = mem->priv;
|
2023-12-23 16:28:26 +00:00
|
|
|
priv->desc = desc;
|
2023-09-10 14:34:26 +00:00
|
|
|
priv->num_subresources = num_subresources;
|
|
|
|
priv->resource = resource;
|
2023-12-16 12:07:14 +00:00
|
|
|
gst_d3d12_dxgi_format_to_resource_formats (priv->desc.Format,
|
|
|
|
priv->resource_formats);
|
|
|
|
priv->srv_inc_size =
|
|
|
|
device_handle->GetDescriptorHandleIncrementSize
|
|
|
|
(D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV);
|
|
|
|
priv->rtv_inc_size =
|
|
|
|
device_handle->GetDescriptorHandleIncrementSize
|
|
|
|
(D3D12_DESCRIPTOR_HEAP_TYPE_RTV);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
mem->device = (GstD3D12Device *) gst_object_ref (device);
|
|
|
|
|
|
|
|
mem->priv->size = 0;
|
|
|
|
for (guint i = 0; i < mem->priv->num_subresources; i++) {
|
|
|
|
UINT64 size;
|
|
|
|
|
|
|
|
/* One notable difference between D3D12/D3D11 is that, D3D12 introduced
|
|
|
|
* *PLANE* slice concept. That means, Each plane of YUV format
|
|
|
|
* (e.g, DXGI_FORMAT_NV12) can be accessible in D3D12 but that wasn't
|
|
|
|
* allowed in D3D11. As a result, the way for calculating subresource index
|
|
|
|
* is changed. This is an example of subresource indexing
|
|
|
|
* for array size == 3 with NV12 format.
|
|
|
|
*
|
|
|
|
* Array 0 Array 1 Array 2
|
|
|
|
* +-------------+-------------+-------------+
|
|
|
|
* | Y plane : 0 | Y plane : 1 | Y plane : 2 |
|
|
|
|
* +-------------+-------------+-------------+
|
|
|
|
* | UV plane: 3 | UV plane: 4 | UV plane: 5 |
|
|
|
|
* +-------------+-------------+-------------+
|
|
|
|
*/
|
2023-12-13 15:50:01 +00:00
|
|
|
mem->priv->subresource_index[i] = D3D12CalcSubresource (0,
|
2023-12-23 16:28:26 +00:00
|
|
|
array_slice, i, 1, desc.DepthOrArraySize);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
2023-12-23 16:28:26 +00:00
|
|
|
device_handle->GetCopyableFootprints (&desc, priv->subresource_index[i],
|
|
|
|
1, 0, &priv->layout[i], nullptr, nullptr, &size);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
/* Update offset manually */
|
2023-09-17 14:53:18 +00:00
|
|
|
priv->layout[i].Offset = priv->size;
|
2023-09-10 14:34:26 +00:00
|
|
|
priv->size += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
gst_memory_init (GST_MEMORY_CAST (mem),
|
2023-12-23 16:28:26 +00:00
|
|
|
(GstMemoryFlags) 0, GST_ALLOCATOR_CAST (allocator), nullptr,
|
2023-09-10 14:34:26 +00:00
|
|
|
mem->priv->size, 0, 0, mem->priv->size);
|
|
|
|
|
2023-12-23 16:28:26 +00:00
|
|
|
GST_LOG_OBJECT (allocator,
|
|
|
|
"Allocated new memory %p with size %" G_GUINT64_FORMAT, mem, priv->size);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
return GST_MEMORY_CAST (mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstMemory *
|
|
|
|
gst_d3d12_allocator_alloc_internal (GstD3D12Allocator * self,
|
|
|
|
GstD3D12Device * device, const D3D12_HEAP_PROPERTIES * heap_props,
|
|
|
|
D3D12_HEAP_FLAGS heap_flags, const D3D12_RESOURCE_DESC * desc,
|
|
|
|
D3D12_RESOURCE_STATES initial_state,
|
|
|
|
const D3D12_CLEAR_VALUE * optimized_clear_value)
|
|
|
|
{
|
|
|
|
ID3D12Device *device_handle;
|
|
|
|
HRESULT hr;
|
|
|
|
ComPtr < ID3D12Resource > resource;
|
|
|
|
|
|
|
|
device_handle = gst_d3d12_device_get_device_handle (device);
|
|
|
|
hr = device_handle->CreateCommittedResource (heap_props, heap_flags,
|
|
|
|
desc, initial_state, optimized_clear_value, IID_PPV_ARGS (&resource));
|
|
|
|
if (!gst_d3d12_result (hr, device)) {
|
|
|
|
GST_ERROR_OBJECT (self, "Couldn't create texture");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2023-12-23 16:28:26 +00:00
|
|
|
return gst_d3d12_allocator_alloc_wrapped (self, device, resource.Get (), 0);
|
2023-09-10 14:34:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GstMemory *
|
|
|
|
gst_d3d12_allocator_alloc (GstD3D12Allocator * allocator,
|
|
|
|
GstD3D12Device * device, const D3D12_HEAP_PROPERTIES * heap_props,
|
|
|
|
D3D12_HEAP_FLAGS heap_flags, const D3D12_RESOURCE_DESC * desc,
|
|
|
|
D3D12_RESOURCE_STATES initial_state,
|
|
|
|
const D3D12_CLEAR_VALUE * optimized_clear_value)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GST_IS_D3D12_ALLOCATOR (allocator), nullptr);
|
|
|
|
g_return_val_if_fail (GST_IS_D3D12_DEVICE (device), nullptr);
|
|
|
|
g_return_val_if_fail (heap_props != nullptr, nullptr);
|
|
|
|
g_return_val_if_fail (desc != nullptr, nullptr);
|
|
|
|
|
|
|
|
if (desc->DepthOrArraySize > 1) {
|
|
|
|
GST_ERROR_OBJECT (allocator, "Array is not supported, use pool allocator");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
return gst_d3d12_allocator_alloc_internal (allocator, device, heap_props,
|
|
|
|
heap_flags, desc, initial_state, optimized_clear_value);
|
|
|
|
}
|
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_d3d12_allocator_set_active (GstD3D12Allocator * allocator, gboolean active)
|
|
|
|
{
|
|
|
|
GstD3D12AllocatorClass *klass;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_D3D12_ALLOCATOR (allocator), FALSE);
|
|
|
|
|
|
|
|
klass = GST_D3D12_ALLOCATOR_GET_CLASS (allocator);
|
|
|
|
if (klass->set_actvie)
|
|
|
|
return klass->set_actvie (allocator, active);
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* GstD3D12PoolAllocator */
|
|
|
|
|
|
|
|
/* *INDENT-OFF* */
|
|
|
|
struct _GstD3D12PoolAllocatorPrivate
|
|
|
|
{
|
|
|
|
_GstD3D12PoolAllocatorPrivate()
|
|
|
|
{
|
|
|
|
outstanding = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For the case where DepthOrArraySize > 1 */
|
|
|
|
ComPtr<ID3D12Resource> resource;
|
|
|
|
|
|
|
|
D3D12_HEAP_PROPERTIES heap_props;
|
|
|
|
D3D12_HEAP_FLAGS heap_flags;
|
|
|
|
D3D12_RESOURCE_DESC desc;
|
|
|
|
D3D12_RESOURCE_STATES initial_state;
|
|
|
|
D3D12_CLEAR_VALUE clear_value;
|
|
|
|
gboolean clear_value_is_valid = FALSE;
|
|
|
|
|
|
|
|
std::queue<GstMemory *> queue;
|
|
|
|
|
|
|
|
std::mutex lock;
|
|
|
|
std::condition_variable cond;
|
|
|
|
gboolean started = FALSE;
|
|
|
|
gboolean active = FALSE;
|
|
|
|
|
|
|
|
std::atomic<guint> outstanding;
|
|
|
|
guint cur_mems = 0;
|
|
|
|
gboolean flushing = FALSE;
|
|
|
|
};
|
|
|
|
/* *INDENT-ON* */
|
|
|
|
|
|
|
|
static void gst_d3d12_pool_allocator_finalize (GObject * object);
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_d3d12_pool_allocator_set_active (GstD3D12Allocator * allocator,
|
|
|
|
gboolean active);
|
|
|
|
|
|
|
|
static gboolean gst_d3d12_pool_allocator_start (GstD3D12PoolAllocator * self);
|
|
|
|
static gboolean gst_d3d12_pool_allocator_stop (GstD3D12PoolAllocator * self);
|
|
|
|
static gboolean gst_d3d12_memory_release (GstMiniObject * mini_object);
|
|
|
|
|
|
|
|
#define gst_d3d12_pool_allocator_parent_class pool_alloc_parent_class
|
|
|
|
G_DEFINE_TYPE (GstD3D12PoolAllocator, gst_d3d12_pool_allocator,
|
|
|
|
GST_TYPE_D3D12_ALLOCATOR);
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_pool_allocator_class_init (GstD3D12PoolAllocatorClass * klass)
|
|
|
|
{
|
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
GstD3D12AllocatorClass *d3d12alloc_class = GST_D3D12_ALLOCATOR_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->finalize = gst_d3d12_pool_allocator_finalize;
|
|
|
|
|
|
|
|
d3d12alloc_class->set_actvie = gst_d3d12_pool_allocator_set_active;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_pool_allocator_init (GstD3D12PoolAllocator * self)
|
|
|
|
{
|
|
|
|
self->priv = new GstD3D12PoolAllocatorPrivate ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_pool_allocator_finalize (GObject * object)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocator *self = GST_D3D12_POOL_ALLOCATOR (object);
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Finalize");
|
|
|
|
|
|
|
|
gst_d3d12_pool_allocator_stop (self);
|
|
|
|
delete self->priv;
|
|
|
|
|
|
|
|
g_clear_object (&self->device);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (pool_alloc_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must be called with the lock */
|
|
|
|
static gboolean
|
|
|
|
gst_d3d12_pool_allocator_start (GstD3D12PoolAllocator * self)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
ID3D12Device *device_handle;
|
|
|
|
HRESULT hr;
|
|
|
|
|
|
|
|
if (priv->started)
|
|
|
|
return TRUE;
|
|
|
|
|
|
|
|
/* Nothing to do */
|
|
|
|
if (priv->desc.DepthOrArraySize == 1) {
|
|
|
|
priv->started = TRUE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
device_handle = gst_d3d12_device_get_device_handle (self->device);
|
|
|
|
if (!priv->resource) {
|
|
|
|
ComPtr < ID3D12Resource > resource;
|
|
|
|
hr = device_handle->CreateCommittedResource (&priv->heap_props,
|
|
|
|
priv->heap_flags, &priv->desc, priv->initial_state,
|
|
|
|
priv->clear_value_is_valid ? &priv->clear_value : nullptr,
|
|
|
|
IID_PPV_ARGS (&resource));
|
|
|
|
if (!gst_d3d12_result (hr, self->device)) {
|
|
|
|
GST_ERROR_OBJECT (self, "Failed to allocate texture");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->resource = resource;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (guint i = 0; i < priv->desc.DepthOrArraySize; i++) {
|
|
|
|
GstMemory *mem;
|
|
|
|
|
|
|
|
mem = gst_d3d12_allocator_alloc_wrapped (_d3d12_memory_allocator,
|
2023-12-23 16:28:26 +00:00
|
|
|
self->device, priv->resource.Get (), i);
|
2023-09-10 14:34:26 +00:00
|
|
|
|
|
|
|
priv->cur_mems++;
|
|
|
|
priv->queue.push (mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->started = TRUE;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_d3d12_pool_allocator_set_active (GstD3D12Allocator * allocator,
|
|
|
|
gboolean active)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocator *self = GST_D3D12_POOL_ALLOCATOR (allocator);
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (self, "active %d", active);
|
|
|
|
|
|
|
|
std::unique_lock < std::mutex > lk (priv->lock);
|
|
|
|
/* just return if we are already in the right state */
|
|
|
|
if (priv->active == active) {
|
|
|
|
GST_LOG_OBJECT (self, "allocator was in the right state");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (active) {
|
|
|
|
if (!gst_d3d12_pool_allocator_start (self)) {
|
|
|
|
GST_ERROR_OBJECT (self, "start failed");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->active = TRUE;
|
|
|
|
priv->flushing = FALSE;
|
|
|
|
} else {
|
|
|
|
priv->flushing = TRUE;
|
|
|
|
priv->active = FALSE;
|
|
|
|
|
|
|
|
priv->cond.notify_all ();
|
|
|
|
|
|
|
|
/* when all memory objects are in the pool, free them. Else they will be
|
|
|
|
* freed when they are released */
|
|
|
|
GST_LOG_OBJECT (self, "outstanding memories %d, (in queue %u)",
|
|
|
|
priv->outstanding.load (), (guint) priv->queue.size ());
|
|
|
|
if (priv->outstanding == 0) {
|
|
|
|
if (!gst_d3d12_pool_allocator_stop (self)) {
|
|
|
|
GST_ERROR_OBJECT (self, "stop failed");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_pool_allocator_free_memory (GstD3D12PoolAllocator * self,
|
|
|
|
GstMemory * mem)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
|
|
|
|
priv->cur_mems--;
|
|
|
|
GST_LOG_OBJECT (self, "freeing memory %p (%u left)", mem, priv->cur_mems);
|
|
|
|
|
|
|
|
GST_MINI_OBJECT_CAST (mem)->dispose = nullptr;
|
|
|
|
gst_memory_unref (mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must be called with the lock */
|
|
|
|
static void
|
|
|
|
gst_d3d12_pool_allocator_clear_queue (GstD3D12PoolAllocator * self)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (self, "Clearing queue");
|
|
|
|
|
|
|
|
while (!priv->queue.empty ()) {
|
|
|
|
GstMemory *mem = priv->queue.front ();
|
|
|
|
priv->queue.pop ();
|
|
|
|
gst_d3d12_pool_allocator_free_memory (self, mem);
|
|
|
|
}
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (self, "Clear done");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must be called with the lock */
|
|
|
|
static gboolean
|
|
|
|
gst_d3d12_pool_allocator_stop (GstD3D12PoolAllocator * self)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
|
|
|
|
GST_DEBUG_OBJECT (self, "Stop");
|
|
|
|
|
|
|
|
if (priv->started) {
|
|
|
|
gst_d3d12_pool_allocator_clear_queue (self);
|
|
|
|
|
|
|
|
priv->started = FALSE;
|
|
|
|
} else {
|
|
|
|
GST_DEBUG_OBJECT (self, "Wasn't started");
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_d3d12_pool_allocator_release_memory (GstD3D12PoolAllocator * self,
|
|
|
|
GstMemory * mem)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (self, "Released memory %p", mem);
|
|
|
|
|
|
|
|
GST_MINI_OBJECT_CAST (mem)->dispose = nullptr;
|
|
|
|
mem->allocator = (GstAllocator *) gst_object_ref (_d3d12_memory_allocator);
|
|
|
|
|
|
|
|
/* keep it around in our queue */
|
|
|
|
priv->queue.push (mem);
|
|
|
|
priv->outstanding--;
|
|
|
|
priv->cond.notify_all ();
|
|
|
|
priv->lock.unlock ();
|
|
|
|
|
|
|
|
gst_object_unref (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_d3d12_memory_release (GstMiniObject * mini_object)
|
|
|
|
{
|
|
|
|
GstMemory *mem = GST_MEMORY_CAST (mini_object);
|
|
|
|
GstD3D12PoolAllocator *alloc;
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv;
|
|
|
|
|
|
|
|
g_assert (mem->allocator != nullptr);
|
|
|
|
|
|
|
|
if (!GST_IS_D3D12_POOL_ALLOCATOR (mem->allocator)) {
|
|
|
|
GST_LOG_OBJECT (mem->allocator, "Not our memory, free");
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
alloc = GST_D3D12_POOL_ALLOCATOR (mem->allocator);
|
|
|
|
priv = alloc->priv;
|
|
|
|
|
|
|
|
priv->lock.lock ();
|
|
|
|
/* if flushing, free this memory */
|
|
|
|
if (alloc->priv->flushing) {
|
|
|
|
priv->lock.unlock ();
|
|
|
|
GST_LOG_OBJECT (alloc, "allocator is flushing, free %p", mem);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* return the memory to the allocator */
|
|
|
|
gst_memory_ref (mem);
|
|
|
|
gst_d3d12_pool_allocator_release_memory (alloc, mem);
|
|
|
|
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must be called with the lock */
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_d3d12_pool_allocator_alloc (GstD3D12PoolAllocator * self, GstMemory ** mem)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
GstMemory *new_mem;
|
|
|
|
|
|
|
|
/* we allcates texture array during start */
|
|
|
|
if (priv->desc.DepthOrArraySize > 1)
|
|
|
|
return GST_FLOW_EOS;
|
|
|
|
|
|
|
|
/* increment the allocation counter */
|
|
|
|
new_mem =
|
|
|
|
gst_d3d12_allocator_alloc_internal (_d3d12_memory_allocator,
|
|
|
|
self->device, &priv->heap_props,
|
|
|
|
priv->heap_flags, &priv->desc, priv->initial_state,
|
|
|
|
priv->clear_value_is_valid ? &priv->clear_value : nullptr);
|
|
|
|
|
|
|
|
if (!new_mem) {
|
|
|
|
GST_ERROR_OBJECT (self, "Failed to allocate new memory");
|
|
|
|
return GST_FLOW_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->cur_mems++;
|
|
|
|
|
|
|
|
*mem = new_mem;
|
|
|
|
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* must be called with the lock */
|
|
|
|
static GstFlowReturn
|
|
|
|
gst_d3d12_pool_allocator_acquire_memory_internal (GstD3D12PoolAllocator * self,
|
|
|
|
GstMemory ** memory, std::unique_lock < std::mutex > &lk)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv = self->priv;
|
|
|
|
GstFlowReturn ret = GST_FLOW_ERROR;
|
|
|
|
|
|
|
|
do {
|
|
|
|
if (priv->flushing) {
|
|
|
|
GST_DEBUG_OBJECT (self, "we are flushing");
|
|
|
|
return GST_FLOW_FLUSHING;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!priv->queue.empty ()) {
|
|
|
|
*memory = priv->queue.front ();
|
|
|
|
priv->queue.pop ();
|
|
|
|
GST_LOG_OBJECT (self, "acquired memory %p", *memory);
|
|
|
|
return GST_FLOW_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* no memory, try to allocate some more */
|
|
|
|
GST_LOG_OBJECT (self, "no memory, trying to allocate");
|
|
|
|
ret = gst_d3d12_pool_allocator_alloc (self, memory);
|
|
|
|
if (ret == GST_FLOW_OK)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
/* something went wrong, return error */
|
|
|
|
if (ret != GST_FLOW_EOS)
|
|
|
|
break;
|
|
|
|
|
|
|
|
GST_LOG_OBJECT (self, "waiting for free memory or flushing");
|
|
|
|
priv->cond.wait (lk);
|
|
|
|
} while (TRUE);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstD3D12PoolAllocator *
|
|
|
|
gst_d3d12_pool_allocator_new (GstD3D12Device * device,
|
|
|
|
const D3D12_HEAP_PROPERTIES * heap_props, D3D12_HEAP_FLAGS heap_flags,
|
|
|
|
const D3D12_RESOURCE_DESC * desc, D3D12_RESOURCE_STATES initial_state,
|
|
|
|
const D3D12_CLEAR_VALUE * optimized_clear_value)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocator *self;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_D3D12_DEVICE (device), nullptr);
|
|
|
|
g_return_val_if_fail (heap_props != nullptr, nullptr);
|
|
|
|
g_return_val_if_fail (desc != nullptr, nullptr);
|
|
|
|
|
|
|
|
gst_d3d12_memory_init_once ();
|
|
|
|
|
|
|
|
self = (GstD3D12PoolAllocator *)
|
|
|
|
g_object_new (GST_TYPE_D3D12_POOL_ALLOCATOR, nullptr);
|
|
|
|
gst_object_ref_sink (self);
|
|
|
|
|
|
|
|
self->device = (GstD3D12Device *) gst_object_ref (device);
|
|
|
|
self->priv->heap_props = *heap_props;
|
|
|
|
self->priv->heap_flags = heap_flags;
|
|
|
|
self->priv->desc = *desc;
|
|
|
|
self->priv->initial_state = initial_state;
|
|
|
|
if (optimized_clear_value) {
|
|
|
|
self->priv->clear_value = *optimized_clear_value;
|
|
|
|
self->priv->clear_value_is_valid = TRUE;
|
|
|
|
} else {
|
|
|
|
self->priv->clear_value_is_valid = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
GstFlowReturn
|
|
|
|
gst_d3d12_pool_allocator_acquire_memory (GstD3D12PoolAllocator * allocator,
|
|
|
|
GstMemory ** memory)
|
|
|
|
{
|
|
|
|
GstFlowReturn ret;
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_D3D12_POOL_ALLOCATOR (allocator),
|
|
|
|
GST_FLOW_ERROR);
|
|
|
|
g_return_val_if_fail (memory != nullptr, GST_FLOW_ERROR);
|
|
|
|
|
|
|
|
priv = allocator->priv;
|
|
|
|
|
|
|
|
std::unique_lock < std::mutex > lk (priv->lock);
|
|
|
|
ret = gst_d3d12_pool_allocator_acquire_memory_internal (allocator,
|
|
|
|
memory, lk);
|
|
|
|
|
|
|
|
if (ret == GST_FLOW_OK) {
|
|
|
|
GstMemory *mem = *memory;
|
|
|
|
/* Replace default allocator with ours */
|
|
|
|
gst_object_unref (mem->allocator);
|
|
|
|
mem->allocator = (GstAllocator *) gst_object_ref (allocator);
|
|
|
|
GST_MINI_OBJECT_CAST (mem)->dispose = gst_d3d12_memory_release;
|
|
|
|
priv->outstanding++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
2023-09-18 14:38:03 +00:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
gst_d3d12_pool_allocator_get_pool_size (GstD3D12PoolAllocator * allocator,
|
|
|
|
guint * max_size, guint * outstanding_size)
|
|
|
|
{
|
|
|
|
GstD3D12PoolAllocatorPrivate *priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GST_IS_D3D12_POOL_ALLOCATOR (allocator), FALSE);
|
|
|
|
|
|
|
|
priv = allocator->priv;
|
|
|
|
|
|
|
|
if (max_size) {
|
|
|
|
if (priv->desc.DepthOrArraySize > 1)
|
|
|
|
*max_size = (guint) priv->desc.DepthOrArraySize;
|
|
|
|
else
|
|
|
|
*max_size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (outstanding_size)
|
|
|
|
*outstanding_size = priv->outstanding;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|