diff options
author | Diego Biurrun <diego@biurrun.de> | 2012-01-18 18:47:59 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2012-01-25 13:14:49 +0100 |
commit | 33ad8c3cab30ebf8a08c891a5ec8cbcba15feabb (patch) | |
tree | b88248e98610b1d32de1dca48bb156a1cafc0091 /libavfilter | |
parent | abe655a4723290497fd727df61fab2840d84b643 (diff) | |
download | ffmpeg-33ad8c3cab30ebf8a08c891a5ec8cbcba15feabb.tar.gz |
cosmetics: Remove some unnecessary block braces.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/vf_hflip.c | 2 |
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: |