[FFmpeg-devel] [PATCH v2 2/3] ffprobe: switch to av_bprint_escape for XML escaping
Jan Ekström
jeebjp at gmail.com
Mon Jan 11 16:20:19 EET 2021
From: Jan Ekström <jan.ekstrom at 24i.com>
Signed-off-by: Jan Ekström <jan.ekstrom at 24i.com>
---
fftools/ffprobe.c | 29 ++++++++---------------------
1 file changed, 8 insertions(+), 21 deletions(-)
diff --git a/fftools/ffprobe.c b/fftools/ffprobe.c
index 3453aa09ff..b1fccad65e 100644
--- a/fftools/ffprobe.c
+++ b/fftools/ffprobe.c
@@ -1672,24 +1672,6 @@ static av_cold int xml_init(WriterContext *wctx)
return 0;
}
-static const char *xml_escape_str(AVBPrint *dst, const char *src, void *log_ctx)
-{
- const char *p;
-
- for (p = src; *p; p++) {
- switch (*p) {
- case '&' : av_bprintf(dst, "%s", "&"); break;
- case '<' : av_bprintf(dst, "%s", "<"); break;
- case '>' : av_bprintf(dst, "%s", ">"); break;
- case '"' : av_bprintf(dst, "%s", """); break;
- case '\'': av_bprintf(dst, "%s", "'"); break;
- default: av_bprint_chars(dst, *p, 1);
- }
- }
-
- return dst->str;
-}
-
#define XML_INDENT() printf("%*c", xml->indent_level * 4, ' ')
static void xml_print_section_header(WriterContext *wctx)
@@ -1761,14 +1743,19 @@ static void xml_print_str(WriterContext *wctx, const char *key, const char *valu
if (section->flags & SECTION_FLAG_HAS_VARIABLE_FIELDS) {
XML_INDENT();
+ av_bprint_escape(&buf, key, NULL, AV_ESCAPE_MODE_XML, 0);
printf("<%s key=\"%s\"",
- section->element_name, xml_escape_str(&buf, key, wctx));
+ section->element_name, buf.str);
av_bprint_clear(&buf);
- printf(" value=\"%s\"/>\n", xml_escape_str(&buf, value, wctx));
+
+ av_bprint_escape(&buf, value, NULL, AV_ESCAPE_MODE_XML, 0);
+ printf(" value=\"%s\"/>\n", buf.str);
} else {
if (wctx->nb_item[wctx->level])
printf(" ");
- printf("%s=\"%s\"", key, xml_escape_str(&buf, value, wctx));
+
+ av_bprint_escape(&buf, value, NULL, AV_ESCAPE_MODE_XML, 0);
+ printf("%s=\"%s\"", key, buf.str);
}
av_bprint_finalize(&buf, NULL);
--
2.29.2
More information about the ffmpeg-devel
mailing list