diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-04-29 03:34:10 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-04-29 13:38:14 +0200 |
commit | 9d2f42795894315a8efd18c260fede72db8534fb (patch) | |
tree | d51280a6a74352b163407de2f6bda3b467a7dd3d /libavfilter | |
parent | fdc16fbb7a986f2bb9e959247408fe31eb4dd430 (diff) | |
download | ffmpeg-9d2f42795894315a8efd18c260fede72db8534fb.tar.gz |
avfilter/vf_colormap: Remove unnecessary headers
In particular remove config_components.h in order to avoid unnecessary
rebuilds.
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_colormap.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavfilter/vf_colormap.c b/libavfilter/vf_colormap.c index a0d6d7be27..d5c5bec39c 100644 --- a/libavfilter/vf_colormap.c +++ b/libavfilter/vf_colormap.c @@ -23,15 +23,10 @@ * Compute a look-up table from map of colors. */ -#include "config_components.h" - #include "libavutil/attributes.h" -#include "libavutil/avstring.h" #include "libavutil/common.h" #include "libavutil/opt.h" -#include "libavutil/pixdesc.h" #include "avfilter.h" -#include "formats.h" #include "internal.h" #include "framesync.h" #include "video.h" |