summaryrefslogtreecommitdiff
path: root/libavutil/mem_internal.h
Commit message (Collapse)AuthorAgeFilesLines
* avutil: remove FF_API_DECLARE_ALIGNEDJames Almer2023-02-091-2/+0
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avutil/mem_internal: Fix headersAndreas Rheinhardt2022-08-241-1/+2
| | | | | | | Including avassert.h is unnecessary since commit 786be70e28fe739b8e49893fa13ae4652a68d1ea. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avutil/mem: make ff_fast_malloc() internal to mem.cJames Almer2021-05-271-18/+0
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* lavu/mem: move the DECLARE_ALIGNED macro family to mem_internal on next+1 bumpAnton Khirnov2021-01-011-0/+70
| | | | They are not properly namespaced and not intended for public use.
* lavu: move LOCAL_ALIGNED from internal.h to mem_internal.hAnton Khirnov2021-01-011-0/+42
| | | | That is a more appropriate place for it.
* avutil/mem_internal: add missing header includesJames Almer2015-07-131-0/+3
| | | | | | | Fixes make checkheaders Reviewed-by: Michael Niedermayer <michaelni@gmx.at> Signed-off-by: James Almer <jamrial@gmail.com>
* Factor duplicated ff_fast_malloc() out into mem_internal.hMichael Niedermayer2015-07-131-0/+42
internal.h is difficult to use due to circular dependancies mem.h is a public header ff_* is not public Alternative solutions probably are possible too Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>