diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-11 23:35:33 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-22 11:14:16 +0200 |
commit | 57b5ec6ba7df442caebc401c4a7ef3ebc066b519 (patch) | |
tree | 757809e3b0a53f3deb95634fcfda70bb7fb3168c /fftools | |
parent | 73b847e136481f643a855d4504a5fa66b47db48c (diff) | |
download | ffmpeg-57b5ec6ba7df442caebc401c4a7ef3ebc066b519.tar.gz |
avcodec/avcodec: Stop including bsf.h in avcodec.h
Also include bsf.h directly wherever it is used.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'fftools')
-rw-r--r-- | fftools/cmdutils.c | 1 | ||||
-rw-r--r-- | fftools/ffmpeg.h | 1 | ||||
-rw-r--r-- | fftools/ffmpeg_opt.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index 18bcfb065a..3ded61cc7c 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -53,6 +53,7 @@ #include "libavutil/cpu.h" #include "libavutil/ffversion.h" #include "libavutil/version.h" +#include "libavcodec/bsf.h" #include "cmdutils.h" #if HAVE_SYS_RESOURCE_H #include <sys/time.h> diff --git a/fftools/ffmpeg.h b/fftools/ffmpeg.h index 6308fb5aeb..d9c0628657 100644 --- a/fftools/ffmpeg.h +++ b/fftools/ffmpeg.h @@ -31,6 +31,7 @@ #include "libavformat/avio.h" #include "libavcodec/avcodec.h" +#include "libavcodec/bsf.h" #include "libavfilter/avfilter.h" diff --git a/fftools/ffmpeg_opt.c b/fftools/ffmpeg_opt.c index 9558bcaeb2..1b43bab9fc 100644 --- a/fftools/ffmpeg_opt.c +++ b/fftools/ffmpeg_opt.c @@ -27,6 +27,7 @@ #include "libavformat/avformat.h" #include "libavcodec/avcodec.h" +#include "libavcodec/bsf.h" #include "libavfilter/avfilter.h" |