diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-05-21 18:27:13 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-06-10 16:51:44 +0200 |
commit | 5d920255aae9ebaf2a96b3d5429b7391cdcc7bf4 (patch) | |
tree | d200de7f4bd3394e67383d8341368546d83238ff | |
parent | c28823ff97f3281698a2cc7e7a6df5d168c68d50 (diff) | |
download | ffmpeg-5d920255aae9ebaf2a96b3d5429b7391cdcc7bf4.tar.gz |
lavfi/lavfutils: include required headers explicitly
-rw-r--r-- | libavfilter/lavfutils.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libavfilter/lavfutils.c b/libavfilter/lavfutils.c index 2bc06257c6..9aa781ef7b 100644 --- a/libavfilter/lavfutils.c +++ b/libavfilter/lavfutils.c @@ -18,8 +18,17 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <stdint.h> + +#include "libavutil/dict.h" #include "libavutil/imgutils.h" +#include "libavutil/log.h" +#include "libavutil/pixfmt.h" + #include "libavformat/avformat.h" + +#include "libavcodec/avcodec.h" + #include "lavfutils.h" int ff_load_image(uint8_t *data[4], int linesize[4], |