mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-21 22:58:16 +00:00
vkh265dec: Fix H.264 ref in logs
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7147>
This commit is contained in:
parent
a9fec8f638
commit
c5b4ad429d
1 changed files with 2 additions and 2 deletions
|
@ -215,7 +215,7 @@ gst_vulkan_h265_decoder_open (GstVideoDecoder * decoder)
|
||||||
|
|
||||||
if (!self->decode_queue) {
|
if (!self->decode_queue) {
|
||||||
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -223,7 +223,7 @@ gst_vulkan_h265_decoder_open (GstVideoDecoder * decoder)
|
||||||
VK_VIDEO_CODEC_OPERATION_DECODE_H265_BIT_KHR);
|
VK_VIDEO_CODEC_OPERATION_DECODE_H265_BIT_KHR);
|
||||||
if (!self->decoder) {
|
if (!self->decoder) {
|
||||||
GST_ELEMENT_ERROR (self, RESOURCE, NOT_FOUND,
|
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;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue