mirror of https://github.com/mpv-player/mpv
configure: disable libmpcdec by default
Disable libmpcdec (musepack) support by default, FFmpeg has a decoder that works better for us and is used by default. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@32826 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
parent
f7d8bba686
commit
179cb785e9
|
@ -378,7 +378,8 @@ Codecs:
|
|||
--enable-libdca enable libdca support [autodetect]
|
||||
--disable-mp3lib disable builtin mp3lib [autodetect]
|
||||
--disable-liba52 disable liba52 [autodetect]
|
||||
--disable-musepack disable musepack support [autodetect]
|
||||
--enable-musepack enable libmpcdec support (deprecated, libavcodec
|
||||
Musepack decoder is preferred) [disabled]
|
||||
|
||||
Video output:
|
||||
--enable-gl enable OpenGL video output [autodetect]
|
||||
|
@ -706,7 +707,7 @@ _enca=auto
|
|||
_inet6=auto
|
||||
_gethostbyname2=auto
|
||||
_ftp=auto
|
||||
_musepack=auto
|
||||
_musepack=no
|
||||
_vstream=auto
|
||||
_pthreads=auto
|
||||
_w32threads=auto
|
||||
|
@ -5794,7 +5795,7 @@ fi
|
|||
echores "$_libdca"
|
||||
|
||||
echocheck "libmpcdec (musepack, version >= 1.2.1 required)"
|
||||
if test "$_musepack" = auto ; then
|
||||
if test "$_musepack" = yes ; then
|
||||
_musepack=no
|
||||
cat > $TMPC << EOF
|
||||
#include <stddef.h>
|
||||
|
|
Loading…
Reference in New Issue