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:
parent
0ac71f9a32
commit
3c14c82b7e
@ -690,7 +690,7 @@ static int ff_filter_frame_framed(AVFilterLink *link, AVFilterBufferRef *frame)
|
|||||||
|
|
||||||
switch (link->type) {
|
switch (link->type) {
|
||||||
case AVMEDIA_TYPE_VIDEO:
|
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);
|
frame->format, frame->video->w, frame->video->h);
|
||||||
break;
|
break;
|
||||||
case AVMEDIA_TYPE_AUDIO:
|
case AVMEDIA_TYPE_AUDIO:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user