diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-16 18:18:28 +0100 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-03-21 01:33:09 +0100 |
commit | a688f3c13ce55c2ba51dbbb344564649f1bb52fe (patch) | |
tree | 0b84647dc0b0f986ae9c89eda6e15836debd956b /libavcodec/eac3dec.c | |
parent | 5b3732227ed3179c6c07a07eca3242ac82c21011 (diff) | |
download | ffmpeg-a688f3c13ce55c2ba51dbbb344564649f1bb52fe.tar.gz |
avcodec/internal: Move FF_CODEC_CAP_* to a new header codec_internal.h
Also move FF_CODEC_TAGS_END as well as struct AVCodecDefault.
This reduces the amount of files that have to include internal.h
(which comes with quite a lot of indirect inclusions), as e.g.
most encoders don't need it. It is furthemore in preparation
for moving the private part of AVCodec out of the public codec.h.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec/eac3dec.c')
-rw-r--r-- | libavcodec/eac3dec.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/eac3dec.c b/libavcodec/eac3dec.c index 3a5c7989b9..d360b02691 100644 --- a/libavcodec/eac3dec.c +++ b/libavcodec/eac3dec.c @@ -39,7 +39,6 @@ #include "avcodec.h" -#include "internal.h" #include "aac_ac3_parser.h" #include "ac3.h" #include "ac3dec.h" |