aboutsummaryrefslogtreecommitdiffstats
path: root/src/audioOutput.h
diff options
context:
space:
mode:
authorJ. Alexander Treuman <jat@spatialrift.net>2007-06-12 17:49:31 +0000
committerJ. Alexander Treuman <jat@spatialrift.net>2007-06-12 17:49:31 +0000
commitbd0620ff72247603a0feef286b03bd98082f69fb (patch)
treea1e2e6fa125f044caacedf456929e7ded61c636f /src/audioOutput.h
parent2d8f36cefbbf8075cf111e3129b2ebba309cc1b3 (diff)
downloadmpd-bd0620ff72247603a0feef286b03bd98082f69fb.tar.gz
mpd-bd0620ff72247603a0feef286b03bd98082f69fb.tar.xz
mpd-bd0620ff72247603a0feef286b03bd98082f69fb.zip
Load shout first instead of last. This makes it more likely to block other
outputs, which is actually desired behaviour. This way if the shout server takes a while to respond, the shout output can block until connected without messing up other audio outputs. git-svn-id: https://svn.musicpd.org/mpd/trunk@6554 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--src/audioOutput.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/audioOutput.h b/src/audioOutput.h
index 3f7ecd94d..7b30c4c09 100644
--- a/src/audioOutput.h
+++ b/src/audioOutput.h
@@ -105,6 +105,7 @@ void sendMetadataToAudioOutput(AudioOutput * audioOutput, MpdTag * tag);
void printAllOutputPluginTypes(FILE * fp);
+extern AudioOutputPlugin shoutPlugin;
extern AudioOutputPlugin nullPlugin;
extern AudioOutputPlugin alsaPlugin;
extern AudioOutputPlugin aoPlugin;
@@ -113,6 +114,5 @@ extern AudioOutputPlugin osxPlugin;
extern AudioOutputPlugin pulsePlugin;
extern AudioOutputPlugin mvpPlugin;
extern AudioOutputPlugin jackPlugin;
-extern AudioOutputPlugin shoutPlugin;
#endif