From c5b4ad429d92d58e44e6a17e52289e6f4511f562 Mon Sep 17 00:00:00 2001 From: Ruben Gonzalez Date: Mon, 8 Jul 2024 15:30:45 +0200 Subject: [PATCH] vkh265dec: Fix H.264 ref in logs Part-of: --- subprojects/gst-plugins-bad/ext/vulkan/vkh265dec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/subprojects/gst-plugins-bad/ext/vulkan/vkh265dec.c b/subprojects/gst-plugins-bad/ext/vulkan/vkh265dec.c index f49fce15d9..2fd3db27e2 100644 --- a/subprojects/gst-plugins-bad/ext/vulkan/vkh265dec.c +++ b/subprojects/gst-plugins-bad/ext/vulkan/vkh265dec.c @@ -215,7 +215,7 @@ gst_vulkan_h265_decoder_open (GstVideoDecoder * decoder) if (!self->decode_queue) { GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND, - ("Failed to create/retrieve vulkan H.264 decoder queue"), (NULL)); + ("Failed to create/retrieve vulkan H.265 decoder queue"), (NULL)); return FALSE; } @@ -223,7 +223,7 @@ gst_vulkan_h265_decoder_open (GstVideoDecoder * decoder) VK_VIDEO_CODEC_OPERATION_DECODE_H265_BIT_KHR); if (!self->decoder) { GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND, - ("Failed to create vulkan H.264 decoder"), (NULL)); + ("Failed to create vulkan H.265 decoder"), (NULL)); return FALSE; }