This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 66d9b8e483738cd6b4c5ec3e4a5b4687512a5274 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Wed Jun 24 16:10:48 2026 +0200 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Wed Jul 1 05:03:34 2026 +0200 swscale/ops_chain: Disable ff_sws_setup_{clear,clamp,scale} They are only used on aarch64. Signed-off-by: Andreas Rheinhardt <[email protected]> --- libswscale/ops_chain.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libswscale/ops_chain.c b/libswscale/ops_chain.c index 40719e753f..add93da824 100644 --- a/libswscale/ops_chain.c +++ b/libswscale/ops_chain.c @@ -60,6 +60,7 @@ int ff_sws_op_chain_append(SwsOpChain *chain, SwsFuncPtr func, #define q2pixel(type, q) ((q).den ? (type) (q).num / (q).den : 0) +#if ARCH_AARCH64 int ff_sws_setup_scale(const SwsImplParams *params, SwsImplResult *out) { const SwsOp *op = params->op; @@ -110,6 +111,7 @@ int ff_sws_setup_clear(const SwsImplParams *params, SwsImplResult *out) return 0; } +#endif int ff_sws_uop_lookup(SwsContext *ctx, const SwsUOpTable *const tables[], int num_tables, const SwsUOp *uop, const int block_size, _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
