vulkan: add support for encode feedback queries
This commit is contained in:
parent
2ce0e51503
commit
83cd77563f
1 changed files with 16 additions and 10 deletions
|
|
@ -281,6 +281,15 @@ int ff_vk_exec_pool_init(FFVulkanContext *s, FFVkQueueFamilyCtx *qf,
|
|||
VkCommandPoolCreateInfo cqueue_create;
|
||||
VkCommandBufferAllocateInfo cbuf_create;
|
||||
|
||||
const VkQueryPoolVideoEncodeFeedbackCreateInfoKHR *ef = NULL;
|
||||
|
||||
if (query_type == VK_QUERY_TYPE_VIDEO_ENCODE_FEEDBACK_KHR) {
|
||||
ef = ff_vk_find_struct(query_create_pnext,
|
||||
VK_STRUCTURE_TYPE_QUERY_POOL_VIDEO_ENCODE_FEEDBACK_CREATE_INFO_KHR);
|
||||
if (!ef)
|
||||
return AVERROR(EINVAL);
|
||||
}
|
||||
|
||||
/* Create command pool */
|
||||
cqueue_create = (VkCommandPoolCreateInfo) {
|
||||
.sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO,
|
||||
|
|
@ -338,21 +347,18 @@ int ff_vk_exec_pool_init(FFVulkanContext *s, FFVkQueueFamilyCtx *qf,
|
|||
}
|
||||
|
||||
pool->nb_queries = nb_queries;
|
||||
pool->query_status_stride = 2;
|
||||
pool->query_status_stride = 1 + 1; /* One result, one status by default */
|
||||
pool->query_results = nb_queries;
|
||||
pool->query_statuses = 0; /* if radv supports it, nb_queries; */
|
||||
pool->query_statuses = nb_queries;
|
||||
|
||||
#if 0 /* CONFIG_VULKAN_ENCODE */
|
||||
/* Video encode quieries produce two results per query */
|
||||
if (query_type == VK_QUERY_TYPE_VIDEO_ENCODE_FEEDBACK_KHR) {
|
||||
pool->query_status_stride = 3; /* skip,skip,result,skip,skip,result */
|
||||
pool->query_results *= 2;
|
||||
} else
|
||||
#endif
|
||||
if (query_type == VK_QUERY_TYPE_RESULT_STATUS_ONLY_KHR) {
|
||||
int nb_results = av_popcount(ef->encodeFeedbackFlags);
|
||||
pool->query_status_stride = nb_results + 1;
|
||||
pool->query_results *= nb_results;
|
||||
} else if (query_type == VK_QUERY_TYPE_RESULT_STATUS_ONLY_KHR) {
|
||||
pool->query_status_stride = 1;
|
||||
pool->query_results = 0;
|
||||
pool->query_statuses = nb_queries;
|
||||
}
|
||||
|
||||
pool->qd_size = (pool->query_results + pool->query_statuses)*(query_64bit ? 8 : 4);
|
||||
|
|
@ -444,7 +450,7 @@ VkResult ff_vk_exec_get_query(FFVulkanContext *s, FFVkExecContext *e,
|
|||
e->query_idx,
|
||||
pool->nb_queries,
|
||||
pool->qd_size, e->query_data,
|
||||
pool->query_64bit ? 8 : 4, qf);
|
||||
pool->qd_size, qf);
|
||||
if (ret != VK_SUCCESS)
|
||||
return ret;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue