vulkanh26xdec: fix debug category name

This is a regression from merge request !78011

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9560>
This commit is contained in:
Víctor Manuel Jáquez Leal 2025-08-15 13:02:57 +02:00 committed by GStreamer Marge Bot
parent 9c93152599
commit c1d0fb0165
2 changed files with 4 additions and 4 deletions

View File

@ -136,8 +136,8 @@ GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
static gpointer
_register_debug_category (gpointer data)
{
GST_DEBUG_CATEGORY_INIT (gst_vulkan_h264_decoder_debug,
"gst_vulkan_h264_decoder_debug", 0, "Vulkan H.264 decoder");
GST_DEBUG_CATEGORY_INIT (gst_vulkan_h264_decoder_debug, "vulkanh264dec", 0,
"Vulkan H.264 decoder");
return NULL;
}

View File

@ -157,8 +157,8 @@ GST_STATIC_PAD_TEMPLATE ("src", GST_PAD_SRC, GST_PAD_ALWAYS,
static gpointer
_register_debug_category (gpointer data)
{
GST_DEBUG_CATEGORY_INIT (gst_vulkan_h265_decoder_debug,
"gst_vulkan_h265_decoder_debug", 0, "Vulkan H.265 decoder");
GST_DEBUG_CATEGORY_INIT (gst_vulkan_h265_decoder_debug, "vulkanh265dec", 0,
"Vulkan H.265 decoder");
return NULL;
}