分享

如何在vc6下编译x264

 slimfeng 2006-10-12

Peter Lee(lspbeyond@sohu.com)

 1、下载x264

x264的主页:http:///

x264是用版权控制工具CVS进行更新的,其主页上不提供源码压缩包,所以我们要用专用的工具下载。

工具名:TortoiseSVN

使用方法:如图1所示。其中下载地址为:svn://svn./x264/trunk/

1

 

2、准备编译环境所需文件

note:23部分参考了《How to Compile XviD with Microsoft Visual C++ 6.0》一文的内容

1) Service Pack 5 for Visual Studio 6 -
http://msdn.microsoft.com/vstudio/downloads/updates/sp/vs6/sp5/default.aspx
The service pack contains all the latest bug fixes for Visual C++ 6.0 as well as updates to essential libraries. You can download the service pack or order it on CD from the Microsoft Developers Network (MSDN) by clicking the link above.
vc6补丁,所选的语言和VC的语言一致就可以了
note:sp6下载地址
http://msdn.microsoft.com/vstudio/downloads/updates/sp/vs6/sp6/default.aspx

2) Visual C++ 6.0 Processor Pack - http://msdn.microsoft.com/vstudio/downloads/tools/ppack/default.aspx
The processors pack adds support for Intel‘s SSE, SEE2 and AMD‘s 3DNow! instructions.
支持处理器多媒体汇编指令的补丁

3) NASM - the famous Netwide Assembler - http:///projects/nasm/
Xvid uses NASM to "compile" the code written in assembly language (the *.asm files). Download the Win32 binary.
x264同样会用到这个编译器

4) DirectX 9.0 SDK - http://msdn.microsoft.com/library/default.asp?url=/downloads/list/directx.asp
To build the DirectShow filter, you need the DirectX SDK (Software Development Kit). Unfortunately for dial-up users, the ~200MB DirectX SDK is no longer available on CD.
编译x264中的vfw工程时要用到

 

3、设置编译环境

1) Installing Service Pack 5

The Service Pack is easy to install since it comes with an installer. The installer‘s filename is "setupsp5.exe". Just find the file and double-click it.
自解压后,运行setupsp5.exe

2) Installing Visual C++ Processor Pack

Double-click "vcpp5.exe" to install.

3) Installing and Configuring NASM

Xvid expects the filename to be "nasm.exe" (probably because all other versions except the Win32 version has that name). For some reason, the Win32 version NASM has a filename of "nasmw.exe." I recommend making a copy of "nasmw.exe" and renaming it "nasm.exe."
文件名一定要改成nasm.exe ,拷贝到Microsoft Visual Studio6\vc98\bin下即可

4) Installing and Configuring the DirectX SDK

 

4x264程序改动

1)、文件格式转换unix->dos: build\win32下的三个工程文件。

网上下个名为unix2dos的小工具,或用写字板另存为的方法。

 

2)、在common.h头部加入#define HAVE_STDINT_H 1

 

3)、将x264.c中的含strncasecmp的代码部分进行注释或改写

strncasecmp函数的功能是不考虑大小写的情况,比较两个字符串,vc6下没有这个库函数。

strncasecmp部分的代码都是用来检验输入参数的文件扩展名的,注释后表示这一功能丧失,故建议改写。

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多