d3d12: Fix debug category name

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7243>
This commit is contained in:
Seungha Yang 2024-07-26 02:37:20 +09:00
parent 88efaa35a8
commit 9a8d7db5de

View file

@ -40,7 +40,7 @@ ensure_debug_category (void)
static GstDebugCategory *cat = nullptr;
GST_D3D12_CALL_ONCE_BEGIN {
cat = _gst_debug_category_new ("d3d12allocator", 0, "d3d12allocator");
cat = _gst_debug_category_new ("d3d12utils", 0, "d3d12utils");
} GST_D3D12_CALL_ONCE_END;
return cat;