[FFmpeg-cvslog] ffprobe: Rename variable in csv_escape_str()

Alexander Strasser git at videolan.org
Tue Sep 25 01:38:21 CEST 2012


ffmpeg | branch: master | Alexander Strasser <eclipse7 at gmx.net> | Mon Sep 17 01:31:44 2012 +0200| [dd83028374ea489f34d87bc6fa7547c644309d24] | committer: Alexander Strasser

ffprobe: Rename variable in csv_escape_str()

Sync to 3245be9 .

Signed-off-by: Alexander Strasser <eclipse7 at gmx.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=dd83028374ea489f34d87bc6fa7547c644309d24
---

 ffprobe.c |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/ffprobe.c b/ffprobe.c
index 8a369ba..ad94995 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -567,9 +567,9 @@ static const char *c_escape_str(AVBPrint *dst, const char *src, const char sep,
  */
 static const char *csv_escape_str(AVBPrint *dst, const char *src, const char sep, void *log_ctx)
 {
-    int quote = !!src[strcspn(src, "\",\n\r")];
+    int needs_quoting = !!src[strcspn(src, "\",\n\r")];
 
-    if (quote)
+    if (needs_quoting)
         av_bprint_chars(dst, '\"', 1);
 
     for (; *src; src++) {
@@ -577,7 +577,7 @@ static const char *csv_escape_str(AVBPrint *dst, const char *src, const char sep
             av_bprint_chars(dst, '\"', 1);
         av_bprint_chars(dst, *src, 1);
     }
-    if (quote)
+    if (needs_quoting)
         av_bprint_chars(dst, '\"', 1);
     return dst->str;
 }



More information about the ffmpeg-cvslog mailing list