summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-23 03:06:26 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2021-07-29 22:02:05 +0200
commit642b202567d5c18af65a9cf97a46e2ee60084490 (patch)
tree22a100fc23b68500a6ace8e3d5fac6b3e0ac150d /libavformat/internal.h
parent23da5caf094a7c20dd3cd59ebd2ddd8b0f5950fc (diff)
avformat/aviobuf: Make ff_read_line_to_bprint() static
It is only used in ff_read_line_to_bprint_overwrite(). Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index bff948e9a3..d71852afb9 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -540,19 +540,6 @@ int ff_get_line(AVIOContext *s, char *buf, int maxlen);
int ff_get_chomp_line(AVIOContext *s, char *buf, int maxlen);
/**
- * Read a whole line of text from AVIOContext to an AVBPrint buffer. Stop
- * reading after reaching a \\r, a \\n, a \\r\\n, a \\0 or EOF. The line
- * ending characters are NOT included in the buffer, but they are skipped on
- * the input.
- *
- * @param s the read-only AVIOContext
- * @param bp the AVBPrint buffer
- * @return the length of the read line, not including the line endings,
- * negative on error.
- */
-int64_t ff_read_line_to_bprint(AVIOContext *s, AVBPrint *bp);
-
-/**
* Read a whole line of text from AVIOContext to an AVBPrint buffer overwriting
* its contents. Stop reading after reaching a \\r, a \\n, a \\r\\n, a \\0 or
* EOF. The line ending characters are NOT included in the buffer, but they