mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-21 06:50:44 +00:00
avutil/frame: frame_copy_video: support copying from a smaller to a larger frame
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e868f84e83
commit
879aa062f9
@ -589,8 +589,8 @@ static int frame_copy_video(AVFrame *dst, const AVFrame *src)
|
|||||||
const uint8_t *src_data[4];
|
const uint8_t *src_data[4];
|
||||||
int i, planes;
|
int i, planes;
|
||||||
|
|
||||||
if (dst->width != src->width ||
|
if (dst->width < src->width ||
|
||||||
dst->height != src->height)
|
dst->height < src->height)
|
||||||
return AVERROR(EINVAL);
|
return AVERROR(EINVAL);
|
||||||
|
|
||||||
planes = av_pix_fmt_count_planes(dst->format);
|
planes = av_pix_fmt_count_planes(dst->format);
|
||||||
@ -601,7 +601,7 @@ static int frame_copy_video(AVFrame *dst, const AVFrame *src)
|
|||||||
memcpy(src_data, src->data, sizeof(src_data));
|
memcpy(src_data, src->data, sizeof(src_data));
|
||||||
av_image_copy(dst->data, dst->linesize,
|
av_image_copy(dst->data, dst->linesize,
|
||||||
src_data, src->linesize,
|
src_data, src->linesize,
|
||||||
dst->format, dst->width, dst->height);
|
dst->format, src->width, src->height);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user