mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:21:11 +01:00
ffprobe: fix C escaping.
This commit is contained in:
parent
2d52ee8a1a
commit
8619362ff1
1 changed files with 1 additions and 1 deletions
|
|
@ -508,7 +508,7 @@ static const char *c_escape_str(AVBPrint *dst, const char *src, const char sep,
|
|||
const char *p;
|
||||
|
||||
for (p = src; *p; p++) {
|
||||
switch (*src) {
|
||||
switch (*p) {
|
||||
case '\b': av_bprintf(dst, "%s", "\\b"); break;
|
||||
case '\f': av_bprintf(dst, "%s", "\\f"); break;
|
||||
case '\n': av_bprintf(dst, "%s", "\\n"); break;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue