From 7586a8ab2c4b5423c3d37c60ebce5d67e05c6c83 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 12 Dec 2017 10:01:39 +0100 Subject: [PATCH] python/build/libs.py: disable the FFmpeg HEVC decoder due to clang build failure --- python/build/libs.py | 5 +++++ 1 file changed, 5 insertions(+) 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', ], )