diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-06-12 01:10:58 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-22 11:14:31 +0200 |
commit | 1be3d8a0cb77f8d34c1f39b47bf5328fe10c82d7 (patch) | |
tree | e5fe6fc80bf3e5efa5f1c30b3f8e610ca8a4ee65 /fftools | |
parent | 57b5ec6ba7df442caebc401c4a7ef3ebc066b519 (diff) | |
download | ffmpeg-1be3d8a0cb77f8d34c1f39b47bf5328fe10c82d7.tar.gz |
avcodec/avcodec: Stop including channel_layout.h in avcodec.h
Also include channel_layout.h directly wherever 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/ffplay.c | 1 | ||||
-rw-r--r-- | fftools/ffprobe.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/fftools/cmdutils.c b/fftools/cmdutils.c index 3ded61cc7c..0b1ef03a25 100644 --- a/fftools/cmdutils.c +++ b/fftools/cmdutils.c @@ -41,6 +41,7 @@ #include "libavutil/avassert.h" #include "libavutil/avstring.h" #include "libavutil/bprint.h" +#include "libavutil/channel_layout.h" #include "libavutil/display.h" #include "libavutil/mathematics.h" #include "libavutil/imgutils.h" diff --git a/fftools/ffplay.c b/fftools/ffplay.c index 826c3ba5b4..833830bfc8 100644 --- a/fftools/ffplay.c +++ b/fftools/ffplay.c @@ -31,6 +31,7 @@ #include <stdint.h> #include "libavutil/avstring.h" +#include "libavutil/channel_layout.h" #include "libavutil/eval.h" #include "libavutil/mathematics.h" #include "libavutil/pixdesc.h" diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c index 94c73fd32c..f411ba35b5 100644 --- a/fftools/ffprobe.c +++ b/fftools/ffprobe.c @@ -33,6 +33,7 @@ #include "libavutil/avassert.h" #include "libavutil/avstring.h" #include "libavutil/bprint.h" +#include "libavutil/channel_layout.h" #include "libavutil/display.h" #include "libavutil/hash.h" #include "libavutil/hdr_dynamic_metadata.h" |