diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-10 17:31:13 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2024-02-18 16:38:09 +0100 |
commit | a272c9cffa524434d32e194e9132afa0c83f6c0d (patch) | |
tree | b596bfa80ecfbdb6316f84501379c5f47348427f /libavfilter/tests/filtfmts.c | |
parent | db98b0e04e04079be3ee51d14659b660c0f7f77a (diff) | |
download | ffmpeg-a272c9cffa524434d32e194e9132afa0c83f6c0d.tar.gz |
avfilter: Add a header for internal generic-layer APIs
This commit moves the generic-layer stuff (that is not used
by filters) to a new header of its own, similarly to
5e7b5b0090bdf68e0897fe55ee657fdccc0cbca2 for libavcodec.
thread.h and link_internal.h are merged into this header.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter/tests/filtfmts.c')
-rw-r--r-- | libavfilter/tests/filtfmts.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/tests/filtfmts.c b/libavfilter/tests/filtfmts.c index 3451ed891e..194792078d 100644 --- a/libavfilter/tests/filtfmts.c +++ b/libavfilter/tests/filtfmts.c @@ -26,10 +26,10 @@ #include "libavutil/samplefmt.h" #include "libavfilter/avfilter.h" +#include "libavfilter/avfilter_internal.h" #include "libavfilter/formats.h" #include "libavfilter/framequeue.h" #include "libavfilter/internal.h" -#include "libavfilter/link_internal.h" static void print_formats_internal(AVFilterLink **links, const AVFilterPad *pads, unsigned nb, size_t fmts_cfg_offset, |