X264编译

0. 下载代码: http://ttpublic.googlecode.com/f ... t-20090216-2245.rar
     这个代码是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 中

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)编译工程,成功

你可能感兴趣的:(X264编译)