diff options
author | reimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2011-01-28 19:06:27 +0000 |
---|---|---|
committer | Uoti Urpala <uau@glyph.nonexistent.invalid> | 2011-02-15 18:46:17 +0200 |
commit | 179cb785e98ba980d0c64fc16922122d427c1554 (patch) | |
tree | c9e01d94a05d48459171930e5e5f5a2d87162055 /configure | |
parent | f7d8bba686c1b5b2a59a2622fe26f0e1cfbcefd4 (diff) |
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
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -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> |