From 94f227bac1c0189d5a270322398bfa4ffa6ad196 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= Date: Mon, 20 Sep 2021 14:22:43 +0300 Subject: [PATCH] avformat/aviobuf: add a full string reading mode to read_line_to_bprint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Additionally: * rename it to read_string_to_bprint * split most of ff_read_line_to_bprint_overwrite into an internal function which can then be utilized to implement other functionality without duplicating code. Signed-off-by: Jan Ekström --- libavformat/aviobuf.c | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c index d79e41ca77..f846a2fd6a 100644 --- a/libavformat/aviobuf.c +++ b/libavformat/aviobuf.c @@ -803,7 +803,13 @@ int ff_get_chomp_line(AVIOContext *s, char *buf, int maxlen) return len; } -static int64_t read_line_to_bprint(AVIOContext *s, AVBPrint *bp) +typedef enum FFBPrintReadStringMode { + FFBPrintReadString = 0, + FFBPrintReadLine = 1, +} FFBPrintReadStringMode; + +static int64_t read_string_to_bprint(AVIOContext *s, AVBPrint *bp, + FFBPrintReadStringMode mode) { int len, end; int64_t read = 0; @@ -814,7 +820,8 @@ static int64_t read_line_to_bprint(AVIOContext *s, AVBPrint *bp) len = 0; do { c = avio_r8(s); - end = (c == '\r' || c == '\n' || c == '\0'); + end = ((mode == FFBPrintReadLine && (c == '\r' || c == '\n')) || + c == '\0'); if (!end) tmp[len++] = c; } while (!end && len < sizeof(tmp)); @@ -822,7 +829,8 @@ static int64_t read_line_to_bprint(AVIOContext *s, AVBPrint *bp) read += len; } while (!end); - if (c == '\r' && avio_r8(s) != '\n' && !avio_feof(s)) + if (mode == FFBPrintReadLine && + c == '\r' && avio_r8(s) != '\n' && !avio_feof(s)) avio_skip(s, -1); if (!c && s->error) @@ -834,12 +842,13 @@ static int64_t read_line_to_bprint(AVIOContext *s, AVBPrint *bp) return read; } -int64_t ff_read_line_to_bprint_overwrite(AVIOContext *s, AVBPrint *bp) +static int64_t read_string_to_bprint_overwrite(AVIOContext *s, AVBPrint *bp, + FFBPrintReadStringMode mode) { int64_t ret; av_bprint_clear(bp); - ret = read_line_to_bprint(s, bp); + ret = read_string_to_bprint(s, bp, mode); if (ret < 0) return ret; @@ -849,6 +858,11 @@ int64_t ff_read_line_to_bprint_overwrite(AVIOContext *s, AVBPrint *bp) return bp->len; } +int64_t ff_read_line_to_bprint_overwrite(AVIOContext *s, AVBPrint *bp) +{ + return read_string_to_bprint_overwrite(s, bp, FFBPrintReadLine); +} + int avio_get_str(AVIOContext *s, int maxlen, char *buf, int buflen) { int i;