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

Git pushed a commit to branch master
in repository ffmpeg.

commit d0bf8cff9fd86d43d6eecfa1dba00ae454cf09c9
Author:     Niklas Haas <[email protected]>
AuthorDate: Wed Jul 22 17:23:19 2026 +0200
Commit:     Niklas Haas <[email protected]>
CommitDate: Mon Aug 3 09:32:30 2026 +0000

    swscale/aarch64: reject unknown ops by default
    
    Sponsored-by: Sovereign Tech Fund
    Signed-off-by: Niklas Haas <[email protected]>
---
 libswscale/aarch64/ops_impl_conv.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libswscale/aarch64/ops_impl_conv.c 
b/libswscale/aarch64/ops_impl_conv.c
index daebac9f09..fbd69c9c87 100644
--- a/libswscale/aarch64/ops_impl_conv.c
+++ b/libswscale/aarch64/ops_impl_conv.c
@@ -199,8 +199,7 @@ static int convert_to_aarch64_impl(SwsContext *ctx, const 
SwsOpList *ops, int n,
                  : SWS_UOP_LINEAR_FMA;
         break;
     case SWS_OP_DITHER:     out->uop = SWS_UOP_DITHER;     break;
-    case SWS_OP_FILTER_H:
-    case SWS_OP_FILTER_V:
+    default:
         return AVERROR(ENOTSUP);
     }
 

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

Reply via email to