diff options
author | Bradley Sepos <[email protected]> | 2018-05-29 01:24:35 -0400 |
---|---|---|
committer | Bradley Sepos <[email protected]> | 2018-05-29 01:24:35 -0400 |
commit | d9706b939373abdc4904dd661032c90287e1cf39 (patch) | |
tree | 4d8097d29d780c91657c80f6adaedfb1fe411edb /contrib | |
parent | d621f7abff08894ceb6078b189b4a534a311a00f (diff) |
contrib: Disable AudioToolbox, CoreImage, VideoToolbox in FFmpeg.
Fixes the build. Hardware acceleration should really be tested before we enable it, even in the nightly.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/ffmpeg/module.defs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/contrib/ffmpeg/module.defs b/contrib/ffmpeg/module.defs index 3547d70d4..1d9663ec7 100644 --- a/contrib/ffmpeg/module.defs +++ b/contrib/ffmpeg/module.defs @@ -84,6 +84,10 @@ FFMPEG.CONFIGURE.extra += \ --enable-muxer=psp \ --enable-muxer=ipod +ifeq (darwin,$(BUILD.system)) + FFMPEG.CONFIGURE.extra += --disable-audiotoolbox --disable-coreimage --disable-videotoolbox +endif + ## check against tuple: B-SYSTEM where B is { 0 | 1 } for cross-compiling flag ifeq (0-cygwin,$(BUILD.cross)-$(BUILD.system)) FFMPEG.GCC.args.extra += -fno-common |