This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 5482deeb668dcee4e56ff703725620b9028cbee4 Author: Lynne <[email protected]> AuthorDate: Sat Mar 28 19:36:58 2026 +0100 Commit: Lynne <[email protected]> CommitDate: Sat Mar 28 19:36:58 2026 +0100 lavfi/scale_vulkan: fix width/height match check Sponsored-by: Sovereign Tech Fund --- libavfilter/vf_scale_vulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavfilter/vf_scale_vulkan.c b/libavfilter/vf_scale_vulkan.c index 1c9a1a93ac..bc3841c8f7 100644 --- a/libavfilter/vf_scale_vulkan.c +++ b/libavfilter/vf_scale_vulkan.c @@ -447,7 +447,7 @@ static int scale_vulkan_config_output(AVFilterLink *outlink) av_log(avctx, AV_LOG_ERROR, "Scaling is not supported with debayering\n"); return AVERROR_PATCHWELCOME; } - } else if (inlink->w == outlink->w || inlink->w == outlink->w) { + } else if (inlink->w == outlink->w || inlink->h == outlink->h) { s->sws = sws_alloc_context(); if (!s->sws) return AVERROR(ENOMEM); _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
