tests: fix queues for vulkan h26x encoders

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9571>
This commit is contained in:
Víctor Manuel Jáquez Leal 2025-08-18 11:00:34 +02:00
parent b051285e03
commit c63d3b5cb4
2 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ setup_h264_encoder (guint32 width, gint32 height, gint sps_id, gint pps_id)
};
/* *INDENT-ON* */
setup_queue (VK_QUEUE_VIDEO_DECODE_BIT_KHR,
setup_queue (VK_QUEUE_VIDEO_ENCODE_BIT_KHR,
VK_VIDEO_CODEC_OPERATION_ENCODE_H264_BIT_KHR);
if (!video_queue) {

View File

@ -489,7 +489,7 @@ setup_h265_encoder (uint32_t width, uint32_t height, gint vps_id,
};
/* *INDENT-ON* */
setup_queue (VK_QUEUE_VIDEO_DECODE_BIT_KHR,
setup_queue (VK_QUEUE_VIDEO_ENCODE_BIT_KHR,
VK_VIDEO_CODEC_OPERATION_ENCODE_H265_BIT_KHR);
if (!video_queue) {