From 1c238aaa376ca63570a7e4800ed0084c85544bb8 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 8ad5aa2f99..b9872a84ce 100644 --- a/subprojects/gst-plugins-bad/ext/vulkan/vkh265dec.c +++ b/subprojects/gst-plugins-bad/ext/vulkan/vkh265dec.c @@ -216,7 +216,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; } @@ -224,7 +224,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; }