Browse Source

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
tags/n3.1
Carl Eugen Hoyos 10 years ago
parent
commit
37afeabd1b
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavfilter/vf_nnedi.c

+ 1
- 1
libavfilter/vf_nnedi.c View File

@@ -601,7 +601,7 @@ static void evalfunc_1(NNEDIContext *s, FrameData *frame_data)

const int ystart = frame_data->field[plane];
const int ystop = height - 12;
uint8_t *srcpp;
const uint8_t *srcpp;

if (!(s->process_plane & (1 << plane)))
continue;


Loading…
Cancel
Save