diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-06 17:41:49 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2009-12-06 17:41:49 +0000 |
commit | 3a1acfd79ad83bc7a4d08b736b270c589c30483f (patch) | |
tree | f5231d753bca9e2a37bd8000d3913b804dba24f2 /libavfilter/vf_slicify.c | |
parent | bf972d5e1c6ba7d501e8a60994c2e4e47b41426d (diff) | |
download | ffmpeg-3a1acfd79ad83bc7a4d08b736b270c589c30483f.tar.gz |
Reindent after the last commit.
Originally committed as revision 20755 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/vf_slicify.c')
-rw-r--r-- | libavfilter/vf_slicify.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libavfilter/vf_slicify.c b/libavfilter/vf_slicify.c index 336f223a7c..b5e9544b3f 100644 --- a/libavfilter/vf_slicify.c +++ b/libavfilter/vf_slicify.c @@ -79,11 +79,11 @@ static void draw_slice(AVFilterLink *link, int y, int h, int slice_dir) 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); |