[FFmpeg-cvslog] drawtext: reindent after the previous commit

Stefano Sabatini git at videolan.org
Tue Jun 21 03:45:19 CEST 2011


ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Mon May 16 23:48:00 2011 +0200| [53a715f576bb4618f91a2f6caba995c48239a5f5] | committer: Anton Khirnov

drawtext: reindent after the previous commit

Signed-off-by: Anton Khirnov <anton at khirnov.net>

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

 libavfilter/vf_drawtext.c |   40 ++++++++++++++++++++--------------------
 1 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/libavfilter/vf_drawtext.c b/libavfilter/vf_drawtext.c
index f47461f..7a77d4f 100644
--- a/libavfilter/vf_drawtext.c
+++ b/libavfilter/vf_drawtext.c
@@ -571,29 +571,29 @@ static int draw_text(AVFilterContext *ctx, AVFilterBufferRef *picref,
     Glyph dummy = { 0 };
 
 #if HAVE_LOCALTIME_R
-        time_t now = time(0);
-        struct tm ltime;
-        uint8_t *buf = dtext->expanded_text;
-        int buf_size = dtext->expanded_text_size;
-
-        if (!buf) {
-            buf_size = 2*strlen(dtext->text)+1;
-            buf = av_malloc(buf_size);
-        }
+    time_t now = time(0);
+    struct tm ltime;
+    uint8_t *buf = dtext->expanded_text;
+    int buf_size = dtext->expanded_text_size;
+
+    if (!buf) {
+        buf_size = 2*strlen(dtext->text)+1;
+        buf = av_malloc(buf_size);
+    }
 
-        localtime_r(&now, &ltime);
+    localtime_r(&now, &ltime);
 
-        do {
-            *buf = 1;
-            if (strftime(buf, buf_size, dtext->text, &ltime) != 0 || *buf == 0)
-                break;
-            buf_size *= 2;
-        } while ((buf = av_realloc(buf, buf_size)));
+    do {
+        *buf = 1;
+        if (strftime(buf, buf_size, dtext->text, &ltime) != 0 || *buf == 0)
+            break;
+        buf_size *= 2;
+    } while ((buf = av_realloc(buf, buf_size)));
 
-        if (!buf)
-            return AVERROR(ENOMEM);
-        text = dtext->expanded_text = buf;
-        dtext->expanded_text_size = buf_size;
+    if (!buf)
+        return AVERROR(ENOMEM);
+    text = dtext->expanded_text = buf;
+    dtext->expanded_text_size = buf_size;
 #endif
     if ((len = strlen(text)) > dtext->nb_positions) {
         if (!(dtext->positions =



More information about the ffmpeg-cvslog mailing list