You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
ffprobe/flat: add escape for '`' and '$'.
This commit is contained in:
@@ -806,6 +806,8 @@ static const char *flat_escape_value_str(AVBPrint *dst, const char *src)
|
||||
case '\r': av_bprintf(dst, "%s", "\\r"); 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); break;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user