Commit 37afeabd authored by Carl Eugen Hoyos's avatar Carl Eugen Hoyos

lavfi/nnedi: Fix a compilation warning.

Silences the following warning:
libavfilter/vf_nnedi.c:611:15: warning: assignment discards ‘const’ qualifier from pointer target type
parent 44cf5b41
...@@ -601,7 +601,7 @@ static void evalfunc_1(NNEDIContext *s, FrameData *frame_data) ...@@ -601,7 +601,7 @@ static void evalfunc_1(NNEDIContext *s, FrameData *frame_data)
const int ystart = frame_data->field[plane]; const int ystart = frame_data->field[plane];
const int ystop = height - 12; const int ystop = height - 12;
uint8_t *srcpp; const uint8_t *srcpp;
if (!(s->process_plane & (1 << plane))) if (!(s->process_plane & (1 << plane)))
continue; continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment