博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
FFmpeg与VS2010
阅读量:5278 次
发布时间:2019-06-14

本文共 835 字,大约阅读时间需要 2 分钟。

编译FFmpeg是一件痛苦的事情,一般都直接使用。

如果使用这个版本,需要注意ffmpeg的帮助里的一段话:

To create import libraries that work with the /OPT:REF option (which is enabled by default in Release mode), follow these steps:Open the Visual Studio Command Prompt.Alternatively, in a normal command line prompt, call ‘vcvars32.bat’ which sets up the environment variables for the Visual C++ tools (the standard location for this file is something like ‘C:\Program Files (x86_\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat’).Enter the ‘bin’ directory where the created LIB and DLL files are stored.Generate new import libraries with lib.exe: 	lib /machine:i386 /def:..\lib\foo-version.def  /out:foo.libReplace foo-version and foo with the respective library names.
即根据dll重新生成lib文件。

否则Relesae下就会出问题。

这是VS2010的一个bug,据说VS2012后已经修复。

转载于:https://www.cnblogs.com/aiwz/p/6333110.html

你可能感兴趣的文章
经典算法题每日演练——第十八题 外排序
查看>>
LINK : fatal error LNK1104: 无法打开文件“freeglutd.lib”
查看>>
Ajax反填截取路径版
查看>>
iOS开发 点菜系统 使用UIPickerView
查看>>
Spring入门---示例四----集合与数组类型注入【第一天】
查看>>
洛谷—— P1765 手机_NOI导刊2010普及(10)
查看>>
MSIL实用指南-位运算
查看>>
unity 4.x 从入门到精通(持续更新)
查看>>
Ryu学习总结(持续更新)
查看>>
springboot1.5.9整合websocket实现实时显示的小demo
查看>>
zookeeper集群启动顺序问题
查看>>
读书笔记(4)
查看>>
[luogu2486] [SDOI2011]染色
查看>>
docker私有仓库-harbor
查看>>
golang 时间戳 时间格式化 获取当前时间 timestamp 计算时间差
查看>>
读书笔记 - 《联盟:互联网时代的人才变革》
查看>>
Vue 从入门到进阶之路(七)
查看>>
线段树(单点更新) POJ 2886 Who Gets the Most Candies?
查看>>
递推DP Codeforces Round #260 (Div. 1) A. Boredom
查看>>
DP+矩阵快速幂 HDOJ 5318 The Goddess Of The Moon
查看>>