Windows Store 环境 ffmpeg 构建集成

1、准备

1.1、MSYS

MSYS 是在 windows 平台模拟 linux shell 环境的工具。包括 shell 脚本解析执行,还有 cp、ln、awk、make 等常用工具。

开源地址:http://sourceforge.net/projects/mingw/files/

下载最新版本:

Download mingw-get-setup.exe (86.5 kB)

1.2、c99-to-c89

Visual C++ 不支持 C99 语法,而 ffmpeg 大量使用的 C99 语法。

c99-to-c89 中的 c99conv 将 C99 语法转换为 C89 语法。

c99-to-c89 中还包含另一个工具 c99wrap,用来将一些 gcc 编译链接参数转换为 Visual C++ 对应的参数。

http://download.videolan.org/pub/contrib/c99-to-c89/1.0.2/release-1.0.2.tar.gz

1.3、msinttypes

msinttypes 是针对 Visual C++ 环境,补充的头文件包

开源地址:http://code.google.com/p/msinttypes/

下载链接:https://code.google.com/p/msinttypes/downloads/detail?name=msinttypes-r26.zip&can=2&q=

1.4、YASM

YASM 是 x86 指令汇编器,也支持 x64 指令。

官方地址:http://yasm.tortall.net/

下载 Win32 版本

  • Win32 .exe (for general use on 32-bit Windows)

2、构建

2.1、配置

2.2、构建

A、参考

http://www.ffmpeg.org/platform.html#Windows

 

你可能感兴趣的:(Windows Store 环境 ffmpeg 构建集成)