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; }