diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2012-05-27 01:28:26 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2012-05-29 01:02:13 +0200 |
commit | 6994b552a6a425eaa996346d68f937ee70023844 (patch) | |
tree | 3edb5138f3e9bdd728ab848bde496e77a73a39d2 /ffprobe.c | |
parent | 59a78290b6fee4b52a28a43440dff6880d3102c2 (diff) | |
download | ffmpeg-6994b552a6a425eaa996346d68f937ee70023844.tar.gz |
ffprobe: make c_escape_str() documentation terser
Avoid to specify implementation details, better to check the code for
that.
Diffstat (limited to 'ffprobe.c')
-rw-r--r-- | ffprobe.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -497,8 +497,7 @@ static const Writer default_writer = { /* Compact output */ /** - * Escape \n, \r, \\ and sep characters contained in s, and print the - * resulting string. + * Apply C-language-like string escaping. */ static const char *c_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx) { |