diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-04-17 21:18:24 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-04-17 21:25:41 +0200 |
commit | 45741dd81f41c50469661142dbf401c46bd2047f (patch) | |
tree | 2fffb42784e30e461a1c4fa3bb1c4f33c6abd978 | |
parent | 1de7dcb4574da7fa6bfde44e59b136e193a61d9c (diff) | |
download | ffmpeg-45741dd81f41c50469661142dbf401c46bd2047f.tar.gz |
vf_lut: fix simplification / off by 1 error
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_lut.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c index 5cc9026786..4c0cdfc29c 100644 --- a/libavfilter/vf_lut.c +++ b/libavfilter/vf_lut.c @@ -286,9 +286,9 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in) outrow = outrow0; for (j = 0; j < w; j++) { 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 + case 4: outrow[3] = tab[3][inrow[3]]; // Fall-through + case 3: outrow[2] = tab[2][inrow[2]]; // Fall-through + case 2: outrow[1] = tab[1][inrow[1]]; // Fall-through default: outrow[0] = tab[0][inrow[0]]; } outrow += lut->step; |