replace ffmpeg deprecated api avpicture_fill to av_image_fill_arrays (#2279)

This commit is contained in:
ljx0305 2023-03-09 15:24:32 +08:00 committed by GitHub
parent cba46e2c87
commit 1cc0f51c07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -672,7 +672,7 @@ FFmpegFrame::Ptr FFmpegSws::inputFrame(const FFmpegFrame::Ptr &frame, int &ret,
auto out = std::make_shared<FFmpegFrame>();
if (!out->get()->data[0]) {
if (data) {
avpicture_fill((AVPicture *) out->get(), data, _target_format, target_width, target_height);
av_image_fill_arrays(out->get()->data, out->get()->linesize, data, _target_format, target_width, target_height, 1);
} else {
out->fillPicture(_target_format, target_width, target_height);
}