mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-27 21:40:34 +00:00
vf_lut: fix pointer type (const) warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
98e409ecaa
commit
2a793ff2bf
@ -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++) {
|
||||
|
Loading…
Reference in New Issue
Block a user