python/build/libs.py: disable the FFmpeg HEVC decoder due to clang build failure

This commit is contained in:
Max Kellermann 2017-12-12 10:01:39 +01:00
parent e1a942250b
commit 7586a8ab2c
1 changed files with 5 additions and 0 deletions

View File

@ -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',
],
)