This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch master
in repository ffmpeg.

commit 5375cfd9c74590599ebd65531df8d96b79b00e77
Author:     Niklas Haas <[email protected]>
AuthorDate: Fri Feb 27 23:14:37 2026 +0100
Commit:     Niklas Haas <[email protected]>
CommitDate: Sun Mar 1 21:57:53 2026 +0000

    swscale/vulkan/ops: fix typo
    
    Checks src.interlaced twice.
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <[email protected]>
---
 libswscale/vulkan/ops.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libswscale/vulkan/ops.c b/libswscale/vulkan/ops.c
index b0ff1dc6f3..64c9e3d45b 100644
--- a/libswscale/vulkan/ops.c
+++ b/libswscale/vulkan/ops.c
@@ -167,7 +167,7 @@ static int add_ops_glsl(VulkanPriv *p, FFVulkanOpsCtx *s,
     void *spv_opaque = NULL;
 
     /* Interlaced formats are not currently supported */
-    if (ops->src.interlaced || ops->src.interlaced)
+    if (ops->src.interlaced || ops->dst.interlaced)
         return AVERROR(ENOTSUP);
 
     err = ff_vk_shader_init(&s->vkctx, shd, "sws_pass",

_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to