This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit f40fcf802472227851e0b8eeba40b9e6b3b8a3a1 Author: Lynne <[email protected]> AuthorDate: Tue Mar 24 15:20:28 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Tue Mar 24 15:21:23 2026 +0100 libavfilter/scale_vulkan: do not unnencessarily set s->qf on every frame The initialization function already does this. Sponsored-by: Sovereign Tech Fund --- libavfilter/vf_scale_vulkan.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/libavfilter/vf_scale_vulkan.c b/libavfilter/vf_scale_vulkan.c index 663b084190..1c9a1a93ac 100644 --- a/libavfilter/vf_scale_vulkan.c +++ b/libavfilter/vf_scale_vulkan.c @@ -354,13 +354,6 @@ static int scale_vulkan_filter_frame(AVFilterLink *link, AVFrame *in) goto fail; } - s->qf = ff_vk_qf_find(&s->vkctx, VK_QUEUE_COMPUTE_BIT, 0); - if (!s->qf) { - av_log(ctx, AV_LOG_ERROR, "Device has no compute queues\n"); - err = AVERROR(ENOTSUP); - goto fail; - } - s->opts.crop_x = in->crop_left; s->opts.crop_y = in->crop_top; s->opts.crop_w = in->width - (in->crop_left + in->crop_right); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
