summaryrefslogtreecommitdiff
path: root/libavfilter/vf_yadif.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-09-05 19:58:45 +0200
committerMichael Niedermayer <michaelni@gmx.at>2013-09-05 19:58:45 +0200
commit4ff5b2683cc8458a9de146b07254c778910fa088 (patch)
tree5350611781b3e769d6eee1fb6aa253cad53779da /libavfilter/vf_yadif.c
parenta67dcd74abd2812ab2cc0dcbf54079b2d38e84d6 (diff)
avfilter/vf_yadif: fix "incompatible pointer type" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter/vf_yadif.c')
-rw-r--r--libavfilter/vf_yadif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/vf_yadif.c b/libavfilter/vf_yadif.c
index 8f851e7bbe..38b6606a6c 100644
--- a/libavfilter/vf_yadif.c
+++ b/libavfilter/vf_yadif.c
@@ -302,7 +302,7 @@ static void fixstride(AVFilterLink *link, AVFrame *f)
return;
av_frame_copy_props(dst, f);
av_image_copy(dst->data, dst->linesize,
- f->data, f->linesize,
+ (const uint8_t **)f->data, f->linesize,
dst->format, dst->width, dst->height);
av_frame_unref(f);
av_frame_move_ref(f, dst);