diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-05-26 20:58:13 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-05-29 01:02:47 +0200 |
commit | c365cdf2028aaefd92f44b0924596f35d165ebda (patch) | |
tree | d75bcafa8dad234e58753966728ebc7da26366ad /doc/ffprobe.texi | |
parent | 6994b552a6a425eaa996346d68f937ee70023844 (diff) | |
download | ffmpeg-c365cdf2028aaefd92f44b0924596f35d165ebda.tar.gz |
ffprobe: add support to '\b' and '\f' escaping in c_escape_str()
Diffstat (limited to 'doc/ffprobe.texi')
-rw-r--r-- | doc/ffprobe.texi | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/ffprobe.texi b/doc/ffprobe.texi index ed96575ed3..cde1d34211 100644 --- a/doc/ffprobe.texi +++ b/doc/ffprobe.texi @@ -245,9 +245,9 @@ Set the escape mode to use, default to "c". It can assume one of the following values: @table @option @item c -Perform C-like escaping. Strings containing a newline ('\n') or -carriage return ('\r'), the escaping character ('\') or the item -separator character @var{SEP} are escaped using C-like fashioned +Perform C-like escaping. Strings containing a newline ('\n'), carriage +return ('\r'), a tab ('\t'), a form feed ('\f'), the escaping +character ('\') or the item separator character @var{SEP} are escaped using C-like fashioned escaping, so that a newline is converted to the sequence "\n", a carriage return to "\r", '\' to "\\" and the separator @var{SEP} is converted to "\@var{SEP}". |