1 Star 0 Fork 41

Glost/ffmpeg

forked from src-openEuler/ffmpeg 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
fix_libsvgdec_compile_error.patch 835 Bytes
一键复制 编辑 原始数据 按行查看 历史
technology208 提交于 2024-06-12 10:39 . fix libsvdec compile error
From a414e25b60b8d11e30479d4f33fb9a94719dae8e Mon Sep 17 00:00:00 2001
From: technology208 <technology@208suo.com>
Date: Tue, 4 Jun 2024 10:44:30 +0800
Subject: [PATCH] fix_libsvgdec_compile_error.patch
---
libavcodec/librsvgdec.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/libavcodec/librsvgdec.c b/libavcodec/librsvgdec.c
index c328fbc..756c26d 100644
--- a/libavcodec/librsvgdec.c
+++ b/libavcodec/librsvgdec.c
@@ -90,8 +90,10 @@ static int librsvg_decode_frame(AVCodecContext *avctx, AVFrame *frame,
goto end;
avctx->pix_fmt = AV_PIX_FMT_RGB32;
+#if LIBRSVG_MAJOR_VERSION > 2 || LIBRSVG_MAJOR_VERSION == 2 && LIBRSVG_MINOR_VERSION >= 52
viewport.width = dimensions.width;
viewport.height = dimensions.height;
+#endif
ret = ff_get_buffer(avctx, frame, 0);
if (ret < 0)
--
2.33.0
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Glost666/ffmpeg.git
git@gitee.com:Glost666/ffmpeg.git
Glost666
ffmpeg
ffmpeg
master

搜索帮助