From de4bdfcd1f7a5020c696fe57fde0755ce571f758 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Mon, 15 Apr 2024 22:27:38 +0200 Subject: [PATCH] python/build/libs.py: disable the FFmpeg "LEAD MCMP" decoder This decoder causes linker failures and MPD has no use for it anyway. --- python/build/libs.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python/build/libs.py b/python/build/libs.py index d7caa005e..675bf76db 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -342,6 +342,7 @@ ffmpeg = FfmpegProject( '--disable-decoder=kgv1', '--disable-decoder=kmvc', '--disable-decoder=lagarith', + '--disable-decoder=lead', '--disable-decoder=loco', '--disable-decoder=lscr', '--disable-decoder=m101',