mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02: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 ++) {
|
for (i = 0; i < h; i ++) {
|
||||||
int w = inlink->w;
|
int w = inlink->w;
|
||||||
const uint8_t (*tab)[256] = lut->lut;
|
const uint8_t (*tab)[256] = (const uint8_t (*)[256])lut->lut;
|
||||||
inrow = inrow0;
|
inrow = inrow0;
|
||||||
outrow = outrow0;
|
outrow = outrow0;
|
||||||
for (j = 0; j < w; j++) {
|
for (j = 0; j < w; j++) {
|
||||||
|
Loading…
Reference in New Issue
Block a user