1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# -*- Mode: Python -*- vi:si:et:sw=4:sts=4:ts=4:syntax=python
from cerbero.utils import shell
class Recipe(recipe.Recipe):
name = 'gst-libav-1.0'
version = '1.5'
# TODO - check license - plugin is certainly LGPLv2+, but need to check
# the linked libs
licenses = [License.LGPLv2Plus]
config_sh = 'sh ./autogen.sh --noconfigure && ./configure'
configure_options = "--enable-lgpl --disable-examples "
remotes = {'origin': 'git://anongit.freedesktop.org/gstreamer/gst-libav'}
commit = '1.5.91'
deps = ['gstreamer-1.0', 'gst-plugins-base-1.0', 'bzip2', 'zlib' ]
files_plugins_codecs_restricted = ['lib/gstreamer-1.0/libgstlibav%(mext)s']
def prepare(self):
self.append_env['CFLAGS'] = " -Wno-error "
self.append_env['CXXFLAGS'] = " -Wno-error "
self.append_env['CPPFLAGS'] = " -Wno-error "
if self.config.target_platform != Platform.LINUX:
self.configure_options += ' --disable-gtk-doc'
if self.config.target_platform == Platform.DARWIN:
if self.config.target_arch == Architecture.X86_64:
asflags = ' -arch x86_64 -m64'
elif self.config.target_arch == Architecture.X86:
asflags = ' -arch i386 -m32'
self.configure_options += ' ASFLAGS="%s"' % asflags
elif self.config.target_platform == Platform.ANDROID:
if self.config.target_arch == Architecture.X86:
# libav internally aligns stacks, while Android doesn't
self.configure_options += ' --with-libav-extra-configure="--extra-cflags=\'-mincoming-stack-boundary=4\'"'
if self.config.variants.nodebug:
self.append_env['CFLAGS'] += ' -DGST_LEVEL_MAX=GST_LEVEL_FIXME'
def configure(self):
super(recipe.Recipe, self).configure()
libav_path = os.path.join(self.build_dir, 'gst-libs', 'ext', 'libav')
if self.config.target_platform == Platform.WINDOWS:
replacements = {'RANLIB=ranlib': 'RANLIB=%s' % os.environ['RANLIB'],
'RANLIB=%s-ranlib' % self.config.host: 'RANLIB=%s' % os.environ['RANLIB']}
shell.replace(os.path.join(libav_path, 'config.mak'), replacements)
elif self.config.target_platform in [Platform.DARWIN, Platform.IOS]:
if self.config.target_arch == Architecture.X86:
replacements = {'HAVE_EBX_AVAILABLE=yes': 'HAVE_EBX_AVAILABLE=no',
'HAVE_EBX_AVAILABLE 1': 'HAVE_EBX_AVAILABLE 0',}
shell.replace(os.path.join(libav_path, 'config.mak'), replacements)
shell.replace(os.path.join(libav_path, 'config.h'), replacements)
if self.config.target_platform == Platform.IOS:
replacements = {'RANLIB=ranlib': 'RANLIB=%s' % os.environ['RANLIB'],
'RANLIB=%s-ranlib' % self.config.host: 'RANLIB=%s' % os.environ['RANLIB']}
shell.replace(os.path.join(libav_path, 'config.mak'), replacements)
# log2 and log2f are not provided by bionic, but they are not checked
# properly
elif self.config.target_platform == Platform.ANDROID:
replacements = {'HAVE_LOG2 1': 'HAVE_LOG2 0',
'HAVE_LOG2F 1': 'HAVE_LOG2F 0',}
shell.replace(os.path.join(libav_path, 'config.h'), replacements)
|