This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit e3d15d460691ab17dc374ad4fceef9751723b8e9 Author: Niklas Haas <[email protected]> AuthorDate: Thu Jun 18 12:09:20 2026 +0200 Commit: Niklas Haas <[email protected]> CommitDate: Tue Jun 23 11:48:13 2026 +0000 swscale/ops_dispatch: move compile flags from ops.h Sponsored-by: Sovereign Tech Fund Signed-off-by: Niklas Haas <[email protected]> --- libswscale/ops.h | 5 ----- libswscale/ops_dispatch.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/libswscale/ops.h b/libswscale/ops.h index 0e8c91f00d..38e9fbcc26 100644 --- a/libswscale/ops.h +++ b/libswscale/ops.h @@ -364,11 +364,6 @@ void ff_sws_op_list_update_comps(SwsOpList *ops); */ int ff_sws_op_list_optimize(SwsOpList *ops); -enum SwsOpCompileFlags { - /* Automatically optimize the operations when compiling */ - SWS_OP_FLAG_OPTIMIZE = 1 << 0, -}; - /** * Helper function to enumerate over all possible (optimized) operation lists, * under the current set of options in `ctx`, and run the given callback on diff --git a/libswscale/ops_dispatch.h b/libswscale/ops_dispatch.h index b08d030d73..a558486e66 100644 --- a/libswscale/ops_dispatch.h +++ b/libswscale/ops_dispatch.h @@ -162,6 +162,11 @@ extern const SwsOpBackend *const ff_sws_op_backends[]; int ff_sws_ops_compile(SwsContext *ctx, const SwsOpBackend *backend, const SwsOpList *ops, SwsCompiledOp *out); +enum SwsOpCompileFlags { + /* Automatically optimize the operations when compiling */ + SWS_OP_FLAG_OPTIMIZE = 1 << 0, +}; + /** * Resolves an operation list to a graph pass. The last op must be a write. * _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
