diff options
author | Anton Khirnov <anton@khirnov.net> | 2020-05-27 14:54:38 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-01-01 14:14:57 +0100 |
commit | e15371061d23457554d241a80dc471515ac13ad4 (patch) | |
tree | 02400adf5d8667fed6f416c954ea41c055f8ef5c /libavutil/mem.h | |
parent | c8c2dfbc378e54aee7e8181ff532483096dc4bc7 (diff) | |
download | ffmpeg-e15371061d23457554d241a80dc471515ac13ad4.tar.gz |
lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bump
They are not properly namespaced and not intended for public use.
Diffstat (limited to 'libavutil/mem.h')
-rw-r--r-- | libavutil/mem.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavutil/mem.h b/libavutil/mem.h index 5fb1a02dd9..e21a1feaae 100644 --- a/libavutil/mem.h +++ b/libavutil/mem.h @@ -33,6 +33,7 @@ #include "attributes.h" #include "error.h" #include "avutil.h" +#include "version.h" /** * @addtogroup lavu_mem @@ -49,6 +50,10 @@ * dealing with memory consistently possible on all platforms. * * @{ + */ + +#if FF_API_DECLARE_ALIGNED +/** * * @defgroup lavu_mem_macros Alignment Macros * Helper macros for declaring aligned variables. @@ -125,6 +130,7 @@ /** * @} */ +#endif /** * @defgroup lavu_mem_attrs Function Attributes |