diff options
author | Max Kellermann <max@musicpd.org> | 2018-02-24 10:49:05 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2018-02-24 10:49:05 +0100 |
commit | a4de96508d7d74b66d7c2a22983b682d95b625eb (patch) | |
tree | 049ca1151a0ef6c27a7f3c592e8d9fb0809767b2 /python/build | |
parent | a7582aaf15c33cc098ad59369fc843e82a7e1d1f (diff) |
python/build/libs.py: re-enable FFmpeg MP3 decoder
libmad has been unmaintained for a long time, and it fails to build on
Windows. I could go and fix libmad's broken configure script, but I
prefer to just assign MP3 decoding to FFmpeg for now.
Closes #228
Diffstat (limited to 'python/build')
-rw-r--r-- | python/build/libs.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/python/build/libs.py b/python/build/libs.py index 43c2c4fb1..64a1ab303 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -142,7 +142,6 @@ ffmpeg = FfmpegProject( '--disable-parser=mjpeg', '--disable-parser=mlp', '--disable-parser=mpeg4video', - '--disable-parser=mpegaudio', '--disable-parser=mpegvideo', '--disable-parser=opus', '--disable-parser=vc1', @@ -194,16 +193,6 @@ ffmpeg = FfmpegProject( # we don't need these decoders, because we have the dedicated # libraries '--disable-decoder=flac', - '--disable-decoder=mp1', - '--disable-decoder=mp1float', - '--disable-decoder=mp2', - '--disable-decoder=mp2float', - '--disable-decoder=mp3', - '--disable-decoder=mp3adu', - '--disable-decoder=mp3adufloat', - '--disable-decoder=mp3float', - '--disable-decoder=mp3on4', - '--disable-decoder=mp3on4float', '--disable-decoder=opus', '--disable-decoder=vorbis', |