summaryrefslogtreecommitdiff
path: root/libavformat/concatdec.c
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-23 04:01:44 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-29 22:02:05 +0200
commitfd101c9c3bcdeb2d74274aaeaa968fe8ead3622d (patch)
tree7e615f5914a0ce123ad7b0d9fa06e8a16f4b6117 /libavformat/concatdec.c
parent642b202567d5c18af65a9cf97a46e2ee60084490 (diff)
downloadffmpeg-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/concatdec.c')
-rw-r--r--libavformat/concatdec.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/concatdec.c b/libavformat/concatdec.c
index 74354fce25..934e9c02fc 100644
--- a/libavformat/concatdec.c
+++ b/libavformat/concatdec.c
@@ -26,6 +26,7 @@
#include "libavutil/timestamp.h"
#include "libavcodec/bsf.h"
#include "avformat.h"
+#include "avio_internal.h"
#include "internal.h"
#include "url.h"