diff options
author | Max Kellermann <max@musicpd.org> | 2017-12-12 10:01:39 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-12-12 10:01:47 +0100 |
commit | 7586a8ab2c4b5423c3d37c60ebce5d67e05c6c83 (patch) | |
tree | b94c355cbb1948a2380dc96c16deb9697648b884 /python | |
parent | e1a942250b443400f8b0d34594b486d3c8031139 (diff) |
python/build/libs.py: disable the FFmpeg HEVC decoder due to clang build failure
Diffstat (limited to 'python')
-rw-r--r-- | python/build/libs.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/python/build/libs.py b/python/build/libs.py index d879dbae9..5acabf695 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -93,6 +93,11 @@ ffmpeg = FfmpegProject( '--disable-devices', '--disable-filters', '--disable-v4l2_m2m', + + # clang misinterprets the "B0" in hevc_mvs.c as binary + # literal, which breaks the build; but we don't need that + # video codec anyway + '--disable-decoder=hevc', ], ) |