2015-02-20 16:12:42 +01:00
|
|
|
from toolchain import Recipe, shprint
|
2015-08-14 02:31:44 +02:00
|
|
|
from os.path import join, exists
|
2015-02-20 16:12:42 +01:00
|
|
|
import sh
|
|
|
|
|
|
|
|
|
|
|
|
class FFMpegRecipe(Recipe):
|
2015-06-14 20:11:34 +02:00
|
|
|
version = "2.6.3"
|
2015-02-20 16:12:42 +01:00
|
|
|
url = "http://www.ffmpeg.org/releases/ffmpeg-{version}.tar.bz2"
|
|
|
|
include_per_arch = True
|
|
|
|
include_dir = "dist/include"
|
|
|
|
libraries = [
|
|
|
|
"libavcodec/libavcodec.a",
|
|
|
|
"libavdevice/libavdevice.a",
|
|
|
|
"libavfilter/libavfilter.a",
|
2015-02-22 18:57:04 +01:00
|
|
|
"libavformat/libavformat.a",
|
2015-02-20 16:12:42 +01:00
|
|
|
"libavresample/libavresample.a",
|
|
|
|
"libavutil/libavutil.a",
|
|
|
|
"libswresample/libswresample.a",
|
|
|
|
"libswscale/libswscale.a"]
|
|
|
|
|
|
|
|
def build_arch(self, arch):
|
|
|
|
options = (
|
|
|
|
"--enable-cross-compile",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-programs",
|
|
|
|
"--disable-doc",
|
|
|
|
"--enable-pic",
|
|
|
|
"--enable-avresample")
|
2015-08-14 02:31:44 +02:00
|
|
|
options = (
|
|
|
|
"--disable-everything",
|
|
|
|
"--enable-parser=h264,aac",
|
|
|
|
"--enable-decoder=h263,h264,aac",
|
|
|
|
"--enable-filter=aresample,resample,crop",
|
|
|
|
"--enable-protocol=file,http,https,tls_openssl",
|
|
|
|
"--enable-demuxer=sdp",
|
|
|
|
"--enable-pic",
|
|
|
|
"--enable-small",
|
|
|
|
"--enable-hwaccels",
|
|
|
|
"--enable-static",
|
|
|
|
"--disable-shared",
|
|
|
|
# libpostproc is GPL: https://ffmpeg.org/pipermail/ffmpeg-user/2012-February/005162.html
|
|
|
|
"--enable-gpl",
|
|
|
|
# enable openssl if needed
|
|
|
|
# if [ "X$BUILD_openssl" != "X" ]; then
|
|
|
|
# FLAGS="--enable-openssl --enable-nonfree"
|
|
|
|
# FLAGS="--enable-protocol=https,tls_openssl"
|
|
|
|
# fi
|
|
|
|
|
|
|
|
# disable some unused algo
|
|
|
|
# note: "golomb" are the one used in our video test, so don't use --disable-golomb
|
|
|
|
# note: and for aac decoding: "rdft", "mdct", and "fft" are needed
|
|
|
|
"--disable-dxva2",
|
|
|
|
"--disable-vdpau",
|
|
|
|
"--disable-vaapi",
|
|
|
|
"--disable-dct",
|
|
|
|
|
|
|
|
# disable binaries / doc
|
|
|
|
"--enable-cross-compile",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-programs",
|
|
|
|
"--disable-doc",
|
|
|
|
"--enable-pic",
|
|
|
|
"--enable-avresample")
|
|
|
|
|
2015-02-20 16:12:42 +01:00
|
|
|
build_env = arch.get_env()
|
|
|
|
build_env["VERBOSE"] = "1"
|
|
|
|
configure = sh.Command(join(self.build_dir, "configure"))
|
|
|
|
shprint(configure,
|
|
|
|
"--target-os=darwin",
|
|
|
|
"--arch={}".format(arch.arch),
|
|
|
|
"--cc={}".format(build_env["CC"]),
|
|
|
|
"--prefix={}/dist".format(self.build_dir),
|
|
|
|
"--extra-cflags={}".format(build_env["CFLAGS"]),
|
|
|
|
"--extra-cxxflags={}".format(build_env["CFLAGS"]),
|
|
|
|
"--extra-ldflags={}".format(build_env["LDFLAGS"]),
|
|
|
|
*options,
|
|
|
|
_env=build_env)
|
2015-08-14 02:31:44 +02:00
|
|
|
"""
|
|
|
|
shprint(sh.sed,
|
|
|
|
"-i.bak",
|
|
|
|
"s/HAVE_CLOSESOCKET=yes//g",
|
|
|
|
"config.mak")
|
|
|
|
shprint(sh.sed,
|
|
|
|
"-i.bak",
|
|
|
|
"s/#define HAVE_CLOSESOCKET 1//g",
|
|
|
|
"config.h")
|
|
|
|
if exists("config.asm"):
|
|
|
|
shprint(sh.sed,
|
|
|
|
"-i.bak",
|
|
|
|
"s/%define HAVE_CLOSESOCKET 1//g",
|
|
|
|
"config.asm")
|
|
|
|
"""
|
2015-02-20 16:12:42 +01:00
|
|
|
shprint(sh.make, "clean", _env=build_env)
|
2015-04-28 18:39:56 +02:00
|
|
|
shprint(sh.make, "-j4", _env=build_env)
|
2015-02-20 16:12:42 +01:00
|
|
|
shprint(sh.make, "install")
|
|
|
|
|
|
|
|
|
|
|
|
recipe = FFMpegRecipe()
|
|
|
|
|