This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch master in repository ffmpeg.
commit 085f06a13f5959301cf9df834b42f7f6b860df16 Author: Andreas Rheinhardt <[email protected]> AuthorDate: Wed Mar 4 19:27:55 2026 +0100 Commit: Andreas Rheinhardt <[email protected]> CommitDate: Mon Mar 9 10:17:26 2026 +0100 avutil/pixelutils: Don't unconditionally include arch-specific header Signed-off-by: Andreas Rheinhardt <[email protected]> --- libavutil/pixelutils.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavutil/pixelutils.c b/libavutil/pixelutils.c index 8e91f0a2cc..171739e039 100644 --- a/libavutil/pixelutils.c +++ b/libavutil/pixelutils.c @@ -28,7 +28,9 @@ #include "attributes.h" #include "macros.h" +#if ARCH_X86 && HAVE_X86ASM #include "x86/pixelutils.h" +#endif static av_always_inline int sad_wxh(const uint8_t *src1, ptrdiff_t stride1, const uint8_t *src2, ptrdiff_t stride2, _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
