This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/8.1 in repository ffmpeg.
commit 27561c4e39bd834523e9e284fb5d749ef5426228 Author: Yong Yu <[email protected]> AuthorDate: Mon Mar 23 09:49:23 2026 -0700 Commit: Michael Niedermayer <[email protected]> CommitDate: Sun Jun 14 04:40:50 2026 +0200 fftools/graph: Add missing include "libavutil/mem.h" for fftools/graph/graphprint.c when HAVE_AV_CONFIG_H is defined, include libavutil/mem.h is skipped in libavutil/common.h. Need this header file to build successfully. (cherry picked from commit 9ab345b2d1fd11d34985826f9a3ff4a5e2fa4e9e) Signed-off-by: Michael Niedermayer <[email protected]> --- fftools/graph/graphprint.c | 1 + 1 file changed, 1 insertion(+) diff --git a/fftools/graph/graphprint.c b/fftools/graph/graphprint.c index 5b050506d0..c2621bc38b 100644 --- a/fftools/graph/graphprint.c +++ b/fftools/graph/graphprint.c @@ -33,6 +33,7 @@ #include "libavutil/avassert.h" #include "libavutil/avstring.h" +#include "libavutil/mem.h" #include "libavutil/pixdesc.h" #include "libavutil/dict.h" #include "libavutil/common.h" _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
