File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 4
4
5
5
6
6
class FFMpegRecipe (Recipe ):
7
- version = 'n4.3-dev '
7
+ version = '007e03348dbd8d3de3eb09022d72c734a8608144 '
8
8
# Moved to github.com instead of ffmpeg.org to improve download speed
9
9
url = 'https://github.com/FFmpeg/FFmpeg/archive/{version}.zip'
10
10
depends = ['sdl2' ] # Need this to build correct recipe order
@@ -48,13 +48,16 @@ def build_arch(self, arch):
48
48
cflags += ['-I' + build_dir + '/include/' ]
49
49
ldflags += ['-lx264' , '-L' + build_dir + '/lib/' ]
50
50
51
- # libshine
52
-
53
51
"""
52
+ WARNING: DISABLED during migration to ndk19, cause We're
53
+ getting a runtime error for a missing symbol.
54
+
55
+ # libshine
54
56
flags += ['--enable-libshine']
55
57
build_dir = Recipe.get_recipe('libshine', self.ctx).get_build_dir(arch.arch)
56
58
cflags += ['-I' + build_dir + '/include/']
57
59
ldflags += ['-lshine', '-L' + build_dir + '/lib/']
60
+ ldflags += ['-lm']
58
61
"""
59
62
60
63
# Enable all codecs:
@@ -95,6 +98,7 @@ def build_arch(self, arch):
95
98
'--enable-gpl' ,
96
99
'--enable-pic' ,
97
100
'--disable-static' ,
101
+ '--disable-debug' ,
98
102
'--enable-shared' ,
99
103
]
100
104
Original file line number Diff line number Diff line change 2
2
3
3
4
4
class FFPyPlayerCodecsRecipe (Recipe ):
5
- depends = ['libshine' , 'libx264' ]
5
+ depends = ['libx264' ]
6
+ # disabled libshine due a missing symbol error (see ffmpeg recipe)
6
7
7
8
def build_arch (self , arch ):
8
9
pass
You can’t perform that action at this time.
0 commit comments