summaryrefslogtreecommitdiff
path: root/libavfilter/vf_hflip.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2012-01-18 18:47:59 +0100
committerDiego Biurrun <diego@biurrun.de>2012-01-25 13:14:49 +0100
commit33ad8c3cab30ebf8a08c891a5ec8cbcba15feabb (patch)
treeb88248e98610b1d32de1dca48bb156a1cafc0091 /libavfilter/vf_hflip.c
parentabe655a4723290497fd727df61fab2840d84b643 (diff)
cosmetics: Remove some unnecessary block braces.
Diffstat (limited to 'libavfilter/vf_hflip.c')
-rw-r--r--libavfilter/vf_hflip.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/vf_hflip.c b/libavfilter/vf_hflip.c
index fb8911f851..c92296e61a 100644
--- a/libavfilter/vf_hflip.c
+++ b/libavfilter/vf_hflip.c
@@ -96,10 +96,8 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir)
for (i = 0; i < h>>vsub; i++) {
switch (step) {
case 1:
- {
for (j = 0; j < (inlink->w >> hsub); j++)
outrow[j] = inrow[-j];
- }
break;
case 2: