aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarton Balint <cus@passwd.hu>2025-08-01 23:17:40 +0200
committerMarton Balint <cus@passwd.hu>2025-08-04 18:03:29 +0000
commitec64d9b73b872ccbe5953fd2ae9de2cc10af5894 (patch)
tree05eb0bfb54a7eb9c88d7b96c4317ca5cb2577fbc
parent7410e29f5da37e589833ed4706931886366efb52 (diff)
downloadffmpeg-ec64d9b73b872ccbe5953fd2ae9de2cc10af5894.tar.gz
avformat/utils: add ff_bprint_get_frame_filename
Signed-off-by: Marton Balint <cus@passwd.hu>
-rw-r--r--libavformat/internal.h14
-rw-r--r--libavformat/utils.c30
2 files changed, 29 insertions, 15 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index bf83571430..3dd1fb1a91 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -641,6 +641,20 @@ int ff_get_frame_filename(char *buf, int buf_size, const char *path,
int64_t number, int flags);
/**
+ * Return in 'buf' the path with '%d' replaced by a number.
+ *
+ * Also handles the '%0nd' format where 'n' is the total number
+ * of digits and '%%'.
+ *
+ * @param buf destination buffer
+ * @param path path with substitution template
+ * @param number the number to substitute
+ * @param flags AV_FRAME_FILENAME_FLAGS_*
+ * @return 0 if OK, <0 on error.
+ */
+int ff_bprint_get_frame_filename(struct AVBPrint *buf, const char *path, int64_t number, int flags);
+
+/**
* Set a dictionary value to an ISO-8601 compliant timestamp string.
*
* @param dict pointer to a pointer to a dictionary struct. If *dict is NULL
diff --git a/libavformat/utils.c b/libavformat/utils.c
index eee7b9e0e3..336fb556f3 100644
--- a/libavformat/utils.c
+++ b/libavformat/utils.c
@@ -283,13 +283,12 @@ uint64_t ff_parse_ntp_time(uint64_t ntp_ts)
return (sec * 1000000) + usec;
}
-int ff_get_frame_filename(char *buf, int buf_size, const char *path, int64_t number, int flags)
+int ff_bprint_get_frame_filename(struct AVBPrint *buf, const char *path, int64_t number, int flags)
{
const char *p;
- char *q, buf1[20], c;
- int nd, len, percentd_found;
+ char c;
+ int nd, percentd_found;
- q = buf;
p = path;
percentd_found = 0;
for (;;) {
@@ -316,29 +315,30 @@ int ff_get_frame_filename(char *buf, int buf_size, const char *path, int64_t num
percentd_found = 1;
if (number < 0)
nd += 1;
- snprintf(buf1, sizeof(buf1), "%0*" PRId64, nd, number);
- len = strlen(buf1);
- if ((q - buf + len) > buf_size - 1)
- goto fail;
- memcpy(q, buf1, len);
- q += len;
+ av_bprintf(buf, "%0*" PRId64, nd, number);
break;
default:
goto fail;
}
} else {
addchar:
- if ((q - buf) < buf_size - 1)
- *q++ = c;
+ av_bprint_chars(buf, c, 1);
}
}
if (!percentd_found)
goto fail;
- *q = '\0';
+ if (!av_bprint_is_complete(buf))
+ return AVERROR(ENOMEM);
return 0;
fail:
- *q = '\0';
- return -1;
+ return AVERROR(EINVAL);
+}
+
+int ff_get_frame_filename(char *buf, int buf_size, const char *path, int64_t number, int flags)
+{
+ AVBPrint bp;
+ av_bprint_init_for_buffer(&bp, buf, buf_size);
+ return ff_bprint_get_frame_filename(&bp, path, number, flags) < 0 ? -1 : 0;
}
int av_get_frame_filename2(char *buf, int buf_size, const char *path, int number, int flags)