diff options
author | Max Kellermann <max@musicpd.org> | 2017-12-12 09:57:35 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-12-12 09:57:40 +0100 |
commit | e1a942250b443400f8b0d34594b486d3c8031139 (patch) | |
tree | 6e2cab82256a5d35fb0495e71f78ba01de02e754 /python | |
parent | 72be0185defeaa01c63b606210ac60fd55cf55a0 (diff) |
python/build/libs.py: disable more FFmpeg features
Diffstat (limited to 'python')
-rw-r--r-- | python/build/libs.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python/build/libs.py b/python/build/libs.py index 078211049..d879dbae9 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -84,11 +84,15 @@ ffmpeg = FfmpegProject( '--disable-swscale', '--disable-postproc', '--disable-avfilter', + '--disable-lzo', + '--disable-faan', + '--disable-pixelutils', '--disable-network', '--disable-encoders', '--disable-protocols', - '--disable-outdevs', + '--disable-devices', '--disable-filters', + '--disable-v4l2_m2m', ], ) |