mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2026-06-19 19:03:00 +02:00
avfilter: Silence warning: passing argument 3 of av_image_copy from incompatible pointer type
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -690,7 +690,7 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFilterBufferRef *frame)
|
||||
|
||||
switch (link->type) {
|
||||
case AVMEDIA_TYPE_VIDEO:
|
||||
av_image_copy(out->data, out->linesize, frame->data, frame->linesize,
|
||||
av_image_copy(out->data, out->linesize, (const uint8_t **)frame->data, frame->linesize,
|
||||
frame->format, frame->video->w, frame->video->h);
|
||||
break;
|
||||
case AVMEDIA_TYPE_AUDIO:
|
||||
|
||||
Reference in New Issue
Block a user