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