[FFmpeg-cvslog] r20755 - trunk/libavfilter/vf_slicify.c

stefano subversion
Sun Dec 6 18:41:49 CET 2009


Author: stefano
Date: Sun Dec  6 18:41:49 2009
New Revision: 20755

Log:
Reindent after the last commit.

Modified:
   trunk/libavfilter/vf_slicify.c

Modified: trunk/libavfilter/vf_slicify.c
==============================================================================
--- trunk/libavfilter/vf_slicify.c	Sun Dec  6 18:40:41 2009	(r20754)
+++ trunk/libavfilter/vf_slicify.c	Sun Dec  6 18:41:49 2009	(r20755)
@@ -79,11 +79,11 @@ static void draw_slice(AVFilterLink *lin
     int y2;
 
     if (slice_dir == 1) {
-    for (y2 = y; y2 + slice->h <= y + h; y2 += slice->h)
-        avfilter_draw_slice(link->dst->outputs[0], y2, slice->h, slice_dir);
+        for (y2 = y; y2 + slice->h <= y + h; y2 += slice->h)
+            avfilter_draw_slice(link->dst->outputs[0], y2, slice->h, slice_dir);
 
-    if (y2 < y + h)
-        avfilter_draw_slice(link->dst->outputs[0], y2, y + h - y2, slice_dir);
+        if (y2 < y + h)
+            avfilter_draw_slice(link->dst->outputs[0], y2, y + h - y2, slice_dir);
     } else if (slice_dir == -1) {
         for (y2 = y + h; y2 - slice->h >= y; y2 -= slice->h)
             avfilter_draw_slice(link->dst->outputs[0], y2 - slice->h, slice->h, slice_dir);



More information about the ffmpeg-cvslog mailing list