Commit 7586a8ab authored by Max Kellermann's avatar Max Kellermann

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

parent e1a94225
......@@ -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',
],
)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment