diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-26 03:22:28 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-12-26 03:22:28 +0000 |
commit | 7e060e7877f4f03609fd57ad9cbd75d69790a966 (patch) | |
tree | a4e9bc2cddca1b9f68f65b8e433909e48e3dfd8b /configure.ac | |
parent | 11029c08c224c4393de0ec69436bb2078b154e8a (diff) | |
download | xine-lib-7e060e7877f4f03609fd57ad9cbd75d69790a966.tar.gz xine-lib-7e060e7877f4f03609fd57ad9cbd75d69790a966.tar.bz2 |
* Implement a WavPack files demuxer, using WavPack library (only for demuxing
as the decoding is left entirely to FFmpeg); it's still in its infancy, but
it should be possible to remove WavPack dependency entirely in the future.
CVS patchset: 8461
CVS date: 2006/12/26 03:22:28
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d710c6e65..bf4910f5f 100644 --- a/configure.ac +++ b/configure.ac @@ -1914,6 +1914,18 @@ AC_SUBST(LIBMODPLUG_CFLAGS) AC_SUBST(LIBMODPLUG_LIBS) dnl AM_CONDITIONAL(HAVE_MODPLUG, [test x"$have_modplug" = x"yes"]) +dnl --------------------------------------------- +dnl Wavpack library +dnl --------------------------------------------- +AC_ARG_WITH([wavpack], + AS_HELP_STRING([--with-wavpack], [Enable Wavpack decoder (requires libwavpack)]) ) + +if test "x$with_wavpack" = "xyes"; then + PKG_CHECK_MODULES([WAVPACK], [wavpack], [have_wavpack=yes]) +fi + +AM_CONDITIONAL([HAVE_WAVPACK], [test "x$have_wavpack" = "xyes"]) + dnl --------------------------------------------- dnl Win32 DLL codecs @@ -2618,6 +2630,9 @@ fi if test "x$have_libflac" = "xyes"; then echo " - FLAC (with libFLAC)" fi +if test "x$have_wavpack" = "xyes"; then + echo " - wavpack" +fi if test x"$enable_a52dec" = "xyes"; then if test x"$have_a52" = "xyes"; then echo " - ac3 (external library)" @@ -2708,6 +2723,9 @@ if test x"$enable_libmad" = "xyes"; then echo " - MAD (MPG 1/2/3) (internal library)" fi fi +if test "x$have_wavpack" = "xyes"; then + echo " - wavpack" +fi if test x"$enable_libdts" = "xyes"; then if test x"$have_dts" = "xyes"; then echo " - DTS (external library)" |