projects
/
ffmpeg.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b2266d6
)
swscale/vulkan/ops: fix typo
author
Niklas Haas
<git@haasn.dev>
Fri, 27 Feb 2026 22:14:37 +0000
(23:14 +0100)
committer
Niklas Haas
<ffmpeg@haasn.dev>
Sun, 1 Mar 2026 21:57:53 +0000
(21:57 +0000)
Checks src.interlaced twice.
Sponsored-by: Sovereign Tech Fund
Signed-off-by: Niklas Haas <git@haasn.dev>
libswscale/vulkan/ops.c
patch
|
blob
|
history
diff --git
a/libswscale/vulkan/ops.c
b/libswscale/vulkan/ops.c
index b0ff1dc6f30d0606c50a61d8498c1449f93653f4..64c9e3d45bc785f60d865a771d6d18edbb5cbc6a 100644
(file)
--- 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",