diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-23 04:01:44 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2021-07-29 22:02:05 +0200 |
commit | fd101c9c3bcdeb2d74274aaeaa968fe8ead3622d (patch) | |
tree | 7e615f5914a0ce123ad7b0d9fa06e8a16f4b6117 /libavformat/framecrcenc.c | |
parent | 642b202567d5c18af65a9cf97a46e2ee60084490 (diff) | |
download | ffmpeg-fd101c9c3bcdeb2d74274aaeaa968fe8ead3622d.tar.gz |
avformat/internal: Move ff_read_line_to_bprint_overwrite to avio_internal.h
It only uses an AVIOContext and an AVBPrint.
When doing so, it turned out that several non-users of
ff_read_line_to_bprint_overwrite() and ff_bprint_to_codecpar_extradata()
relied on libavformat/internal.h to include bprint.h or avstring.h
for them. In order to avoid a repeat of this and in order to reduce
unnecessary dependencies, a forward declaration of struct AVBPrint is
used instead of including bprint.h.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/framecrcenc.c')
-rw-r--r-- | libavformat/framecrcenc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/framecrcenc.c b/libavformat/framecrcenc.c index 56f7ea1b5a..ab79903e31 100644 --- a/libavformat/framecrcenc.c +++ b/libavformat/framecrcenc.c @@ -22,6 +22,7 @@ #include <inttypes.h> #include "libavutil/adler32.h" +#include "libavutil/avstring.h" #include "libavcodec/codec_id.h" #include "libavcodec/codec_par.h" |