mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-13 21:28:01 +02:00
avfilter/vf_yadif: fix "incompatible pointer type" warning
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
a67dcd74ab
commit
4ff5b2683c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user