gpt4 book ai didi

ffmpeg - [FFmpeg]什么是已弃用的 avpicture_alloc、avpicture::data 的替代品

转载 作者:行者123 更新时间:2023-12-04 23:16:15 25 4
gpt4 key购买 nike

我正在从 FFmpeg 站点修改示例源代码(muxing.c)。
我将旧功能更改为新功能并尝试构建代码。
然后,有几个错误说 AVPicture 被宣布弃用。

我在互联网上进行了一些研究,但找不到解决方法的答案。

/* Allocate the encoded raw picture. */
ret = avpicture_alloc(&dst_picture, c->pix_fmt, c->width, c->height);
if (ret < 0)
{
//fprintf(stderr, "Could not allocate picture: %s\n", av_err2str(ret));
char buf[256];
av_strerror(ret, buf, sizeof(buf));
printf("Could not allocate picture: %s,ret:%d\n", buf, ret);
exit(1);
}

最佳答案

我认为是 av_image_alloc()

我也找不到替换是什么,我在 AVPicture 的来源中找到了那avpicture_alloc只需调用该函数。

关于ffmpeg - [FFmpeg]什么是已弃用的 avpicture_alloc、avpicture::data 的替代品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36563818/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com