Warning, /graphics/krita/3rdparty/ext_ffmpeg/0001-Copy-over-some-macros-from-libavutil-version.h.patch is written in an unsupported language. File is not indexed.

0001 From 147d4245a0255813bf2d941763f5b3b51fab40af Mon Sep 17 00:00:00 2001
0002 From: Sharaf Zaman <shzam@sdf.org>
0003 Date: Wed, 12 Jul 2023 13:33:18 +1000
0004 Subject: [PATCH 1/2] Copy over some macros from libavutil/version.h
0005 
0006 Wihtout these the structure included in libraries other than libavutil
0007 is binary incompatible with the one in libavutil. This causes crashes.
0008 ---
0009  libavutil/version.h.in | 12 ++++++++++++
0010  1 file changed, 12 insertions(+)
0011 
0012 diff --git a/libavutil/version.h.in b/libavutil/version.h.in
0013 index 99c6af6732..c7ad155c30 100644
0014 --- a/libavutil/version.h.in
0015 +++ b/libavutil/version.h.in
0016 @@ -129,6 +129,18 @@
0017  #ifndef FF_API_PSEUDOPAL
0018  #define FF_API_PSEUDOPAL                (LIBAVUTIL_VERSION_MAJOR < 57)
0019  #endif
0020 +#ifndef FF_API_CHILD_CLASS_NEXT
0021 +#define FF_API_CHILD_CLASS_NEXT         (LIBAVUTIL_VERSION_MAJOR < 57)
0022 +#endif
0023 +#ifndef FF_API_BUFFER_SIZE_T
0024 +#define FF_API_BUFFER_SIZE_T            (LIBAVUTIL_VERSION_MAJOR < 57)
0025 +#endif
0026 +#ifndef FF_API_D2STR
0027 +#define FF_API_D2STR                    (LIBAVUTIL_VERSION_MAJOR < 58)
0028 +#endif
0029 +#ifndef FF_API_DECLARE_ALIGNED
0030 +#define FF_API_DECLARE_ALIGNED          (LIBAVUTIL_VERSION_MAJOR < 58)
0031 +#endif
0032  
0033  
0034  /**
0035 -- 
0036 2.40.1
0037