diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | configure.ac | 4 | ||||
-rw-r--r-- | src/combined/decoder_flac.c | 2 |
3 files changed, 5 insertions, 3 deletions
@@ -1,4 +1,6 @@ xine-lib (1.1.1?) 20??-??-?? + * Bump the FLAC decoder's priority above ffmpegaudio. This should fix + various problems with FLAC playback. xine-lib (1.1.17) 2009-12-01 * Add support for Matroska SIMPLEBLOCK. diff --git a/configure.ac b/configure.ac index df262cc26..5317a4be1 100644 --- a/configure.ac +++ b/configure.ac @@ -1262,10 +1262,10 @@ dnl check for libFLAC dnl --------------------------------------------- AC_ARG_WITH([libflac], - AS_HELP_STRING([--with-libflac], [build libFLAC-based decoder and demuxer])) + AS_HELP_STRING([--without-libflac], [don't build libFLAC-based decoder and demuxer])) have_libflac="no" -if test "x$with_libflac" = "xyes"; then +if test "x$with_libflac" != "xno"; then AM_PATH_LIBFLAC([have_libflac="yes"]) fi diff --git a/src/combined/decoder_flac.c b/src/combined/decoder_flac.c index e9a7fbb25..b774e0b90 100644 --- a/src/combined/decoder_flac.c +++ b/src/combined/decoder_flac.c @@ -426,7 +426,7 @@ static uint32_t audio_types[] = { static const decoder_info_t dec_info_audio = { audio_types, /* supported types */ - 5 /* priority */ + 8 /* priority */ }; const plugin_info_t xine_plugin_info[] EXPORTED = { |