diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-02-23 00:21:49 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-02-23 00:21:49 +0100 |
commit | 37afeabd1b836fc77debc597f9e5b5de3c27ebfc (patch) | |
tree | 03b79540d5cbaaef446c39735ae2ce0b6ce649ed | |
parent | 44cf5b41d33a40453784b9b6237bd330ecbfbbb8 (diff) | |
download | ffmpeg-37afeabd1b836fc77debc597f9e5b5de3c27ebfc.tar.gz |
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
-rw-r--r-- | libavfilter/vf_nnedi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_nnedi.c b/libavfilter/vf_nnedi.c index ad0c52ac7e..b14aa64c04 100644 --- a/libavfilter/vf_nnedi.c +++ b/libavfilter/vf_nnedi.c @@ -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; |