diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2012-05-10 20:09:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-05-10 20:09:37 +0200 |
commit | 2a793ff2bf2197f36db3bf296668d44915142d03 (patch) | |
tree | 4770d7bc126c74d97ecf43fe6100d0def88e6991 | |
parent | 98e409ecaa3d3cc2a20c96b72ef11450e2c31121 (diff) | |
download | ffmpeg-2a793ff2bf2197f36db3bf296668d44915142d03.tar.gz |
vf_lut: fix pointer type (const) warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/vf_lut.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_lut.c b/libavfilter/vf_lut.c index 99df9e58b6..2a2c0b7e99 100644 --- a/libavfilter/vf_lut.c +++ b/libavfilter/vf_lut.c @@ -303,7 +303,7 @@ static void draw_slice(AVFilterLink *inlink, int y, int h, int slice_dir) for (i = 0; i < h; i ++) { int w = inlink->w; - const uint8_t (*tab)[256] = lut->lut; + const uint8_t (*tab)[256] = (const uint8_t (*)[256])lut->lut; inrow = inrow0; outrow = outrow0; for (j = 0; j < w; j++) { |