x264在vc下编译(转载)

不得不说,这才是真正的高手……从根本入手,而非查缺补漏。
原帖地址:http://www.chinavideo.org/forum.php?mod=viewthread&tid=11577
以下为转载:


这是我编译成功的详细步骤,你可以参考一下


0. 下载代码:点击下载
   这个代码是20090216版本的,yuluo77修改了decoder_frame中的内存泄露


1. 用VS2008打开“.\x264-snapshot-20090216-2245\build\win32\libx264_vs2008.vcproj"


2. 下载并配置yasm,下载win32版本
   1)进入网站,http://www.tortall.net/projects/yasm/wiki/Download
   2)解压rar文件,并重命名exe为yasm.exe,将 yasm.exe 放到 VC 的 bin 目录里,C:\Program Files\Microsoft Visual Studio 9.0\VC\bin
   3)将yasm.rules 放到 C:\Program Files\Microsoft Visual Studio 9.0\VC\VCProjectDefaults 中(下载地址:http://www.chinavideo.org/forum.php?mod=viewthread&tid=13067)


3. 编译libx264_vs2008.vcproj
   1)用VS2008打开“.\x264-snapshot-20090216-2245\build\win32\libx264_vs2008.vcproj"
   2)在debug模式下编译工程
   3)在release模式下编译工程
   4)生成两个.lib文件,"libx264.lib"和"libx264d.lib" 均在 .\bin 目录下


4. 编译x264_vs2008.vcproj
   1)用VS2008打开“.\x264-snapshot-20090216-2245\build\win32\x264_vs2008.vcproj"
   2)右键单击"Solution Explorer"中的"x264",选择Properties->Configuration Properties->Linker->Input
   3) 选择"Debug"模式,添加.lib库。将"vfw32.lib winmm.lib" 修改为 "vfw32.lib winmm.lib .\bin\libx264d.lib"
   4)选择"Release"模式,添加.lib库。将"vfw32.lib winmm.lib" 修改为 "vfw32.lib winmm.lib .\bin\libx264.lib"
   5)编译工程,成功


另外,附查缺补漏篇的编译方法(也算是高质量的资源了,有参考价值,虽然我试过不太行):http://wuyuans.com/2011/12/vs2010-complies-x264-20091006/

你可能感兴趣的:(H.264,x.264)