diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2005-03-17 00:56:31 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2005-03-17 00:56:31 +0000 |
commit | c1057f0c347f80579461d6a06f645e2bb1c7b673 (patch) | |
tree | b3d05ad43b9e521a9712f8928661a5ca40a91596 | |
parent | 70865740fb3f5557ae943ef3571cfc96573f032e (diff) | |
download | mpd-c1057f0c347f80579461d6a06f645e2bb1c7b673.tar.gz mpd-c1057f0c347f80579461d6a06f645e2bb1c7b673.tar.xz mpd-c1057f0c347f80579461d6a06f645e2bb1c7b673.zip |
slight tweak of avuton's idea of causing an error when no audio output's found
git-svn-id: https://svn.musicpd.org/mpd/trunk@3093 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | configure.ac | 32 | ||||
-rw-r--r-- | src/audioOutputs/audioOutput_osx.c | 7 |
2 files changed, 9 insertions, 30 deletions
diff --git a/configure.ac b/configure.ac index e28457aeb..3395fdb4c 100644 --- a/configure.ac +++ b/configure.ac @@ -126,14 +126,6 @@ if test x$enable_oss = xyes; then AC_CHECK_HEADER(sys/soundcard.h,[enable_oss=yes;AC_DEFINE(HAVE_OSS,1,[Define to enable OSS])],[AC_MSG_WARN(Soundcard headers not found -- disabling OSS support);enable_oss=no]) fi -if test x$enable_ao = xno && - test x$enable_oss = xno && - test x$enable_shout = xno && - test x$enable_alsa = xno && - test x$enable_osx = xno; then - AC_MSG_ERROR("Cannot compile without an output target") -fi - if test x$enable_alsa = xyes; then AM_PATH_ALSA(0.9.0,[AC_DEFINE(HAVE_ALSA,1,[Define to enable ALSA support]) MPD_LIBS="$MPD_LIBS $ALSA_LIBS" MPD_CFLAGS="$MPD_CFLAGS $ALSA_CFLAGS"],enable_alsa=no) fi @@ -559,22 +551,6 @@ fi echo "" -echo "Volume Mixer Support:" - -if test x$enable_oss = xyes; then - echo "OSS mixer support .............enabled" -else - echo "OSS mixer support .............disabled" -fi - -if test x$enable_alsa = xyes; then - echo "ALSA mixer support ............enabled" -else - echo "ALSA mixer support ............disabled" -fi - -echo "" - echo "Audio Output Support:" if test x$enable_ao = xyes; then echo "Playing audio via libao .......enabled" @@ -608,6 +584,14 @@ fi echo "" +if test x$enable_ao = xno && + test x$enable_oss = xno && + test x$enable_shout = xno && + test x$enable_alsa = xno && + test x$enable_osx = xno; then + AC_MSG_ERROR("No Audio Output types configured!") +fi + echo "Audio Format Support:" if test x$enable_id3 = xyes; then diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c index c8760c3c1..03c3cfc67 100644 --- a/src/audioOutputs/audioOutput_osx.c +++ b/src/audioOutputs/audioOutput_osx.c @@ -101,14 +101,9 @@ static void osx_dropBufferedAudio(AudioOutput * audioOutput) { OsxData * od = (OsxData *)audioOutput->data; pthread_mutex_lock(&od->mutex); - od->go = 0; od->len = 0; + od->go = 0; pthread_mutex_unlock(&od->mutex); - - /*if(od->started) { - AudioOutputUnitStop(od->au); - od->started = 0; - }*/ } static void osx_closeDevice(AudioOutput * audioOutput) { |