使用 libx264 在 cygwin 上编译 ffmpeg 时生成错误
使用以下命令配置 ffmpeg(0.6.1)(使用 x264-snapshot-20101228-2245 快照) Gcc 版本:gcc (GCC) 4.3.4 20090804(发布)
./configure --enable-shared --disable-static --enable-pthreads --enable-libx264
--enable-gpl --disable-doc --enable-memalign-hack
--extra-ldflags="-L/usr/local/lib"
,之后,“make”命令给出以下错误。
CC libavdevice/alldevices.o
CC libavdevice/avdevice.o
CC libavdevice/oss_audio.o
CC libavdevice/vfwcap.o
CC libavformat/4xm.o
In file included from /usr/include/endian.h:42,
from /usr/include/cygwin/types.h:22,
from /usr/include/sys/types.h:440,
from /usr/include/stdio.h:46,
from ./libavutil/common.h:34,
from ./libavutil/intreadwrite.h:25,
from libavformat/4xm.c:30:
/usr/include/byteswap.h:19: error: redefinition of `bswap_16'
./libavutil/x86/bswap.h:33: error: previous definition of `bswap_16' was here
/usr/include/byteswap.h:25: error: redefinition of `bswap_32'
./libavutil/x86/bswap.h:40: error: previous definition of `bswap_32' was here
/usr/include/byteswap.h:31: error: redefinition of `bswap_64'
./libavutil/bswap.h:70: error: previous definition of `bswap_64' was here
make: *** [libavformat/4xm.o] Error 1
bash: sudo: command not found
我检查了很多显示相同错误的链接,但没有提供解决方案。有人知道谁已经在 cygwin 上构建了 ffmpeg 吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是通过使用
修复
前缀。您应该更新到最新的 gitbswap
宏的 >av_HEAD
。This is fixed in FFmpeg GIT by using
av_
prefix forbswap
macros. You should update to the latest gitHEAD
.