From 4c6fa4ef45b934d9a372a35df9b0427054a873b7 Mon Sep 17 00:00:00 2001 From: Clément Bœsch Date: Wed, 17 Apr 2013 12:08:13 +0200 Subject: lavfi/lut: simplify nested component stepping. --- libavfilter/vf_lut.c | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) (limited to 'libavfilter') diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c index b272fdaa5c..5cc9026786 100644 --- a/libavfilter/vf_lut.c +++ b/libavfilter/vf_lut.c @@ -285,15 +285,11 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) inrow = inrow0; outrow = outrow0; for (j = 0; j < w; j++) { - outrow[0] = tab[0][inrow[0]]; - if (lut->step>1) { - outrow[1] = tab[1][inrow[1]]; - if (lut->step>2) { - outrow[2] = tab[2][inrow[2]]; - if (lut->step>3) { - outrow[3] = tab[3][inrow[3]]; - } - } + switch (lut->step) { + case 3: outrow[3] = tab[3][inrow[3]]; // Fall-through + case 2: outrow[2] = tab[2][inrow[2]]; // Fall-through + case 1: outrow[1] = tab[1][inrow[1]]; // Fall-through + default: outrow[0] = tab[0][inrow[0]]; } outrow += lut->step; inrow += lut->step; -- cgit v1.2.3