futan-yj
Results
2
comments of
futan-yj
> Not currently, but you're welcome to add it and submit a pull request. Thanks, I tried to add CONVERSATION_BT2020 and corresponding shader, but found it can't support 10bit data...
根本原因是libcurl的这2个符号 苹果也有一份,在ffmpeg.framework里这2个符号也被导出了,导致苹果认为non-public的符号被导出,解决方法是将它改名 或者 彻底隐藏: 1. 快速改名:将用到的这2个方法改名,而依赖的curl库也单独拉个分支,修改里面方法的定义,重新打包; 2. 彻底隐藏:当前libcurl/openssl/nghttp2等库被打在alivcffmpeg.framework的,导致它的符号必须公开,用于player.framework使用,可以通过修改脚本,让它们链接到player.framework,并且将curl的符号隐藏(--enable-symbol-hiding),这样它就是个内部使用的符号,不被展示出来。