Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2016-02-23 02:21:49 +0300
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2016-02-23 02:21:49 +0300
commit37afeabd1b836fc77debc597f9e5b5de3c27ebfc (patch)
tree03b79540d5cbaaef446c39735ae2ce0b6ce649ed /libavfilter/vf_nnedi.c
parent44cf5b41d33a40453784b9b6237bd330ecbfbbb8 (diff)
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
Diffstat (limited to 'libavfilter/vf_nnedi.c')
-rw-r--r--libavfilter/vf_nnedi.c2
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;