diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-14 17:39:14 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2006-07-14 17:39:14 +0000 |
commit | ba9a2c349f1bb079c790e00203464a742920d503 (patch) | |
tree | 20daead4f0126a5c76b5d62ef6309811c822af93 /src/audioOutputs | |
parent | 26447de0ce7130d798ea5742b90c002a62de01e7 (diff) | |
download | mpd-ba9a2c349f1bb079c790e00203464a742920d503.tar.gz mpd-ba9a2c349f1bb079c790e00203464a742920d503.tar.xz mpd-ba9a2c349f1bb079c790e00203464a742920d503.zip |
Use a macro to declare disabled audio output plugins
git-svn-id: https://svn.musicpd.org/mpd/trunk@4321 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutputs')
-rw-r--r-- | src/audioOutputs/audioOutput_alsa.c | 16 | ||||
-rw-r--r-- | src/audioOutputs/audioOutput_ao.c | 15 | ||||
-rw-r--r-- | src/audioOutputs/audioOutput_mvp.c | 16 | ||||
-rw-r--r-- | src/audioOutputs/audioOutput_oss.c | 17 | ||||
-rw-r--r-- | src/audioOutputs/audioOutput_osx.c | 15 | ||||
-rw-r--r-- | src/audioOutputs/audioOutput_pulse.c | 12 | ||||
-rw-r--r-- | src/audioOutputs/audioOutput_shout.c | 15 |
7 files changed, 13 insertions, 93 deletions
diff --git a/src/audioOutputs/audioOutput_alsa.c b/src/audioOutputs/audioOutput_alsa.c index fc4b7646d..080e4ccd3 100644 --- a/src/audioOutputs/audioOutput_alsa.c +++ b/src/audioOutputs/audioOutput_alsa.c @@ -371,23 +371,11 @@ AudioOutputPlugin alsaPlugin = alsa_playAudio, alsa_dropBufferedAudio, alsa_closeDevice, - NULL /* sendMetadataFunc */ + NULL, /* sendMetadataFunc */ }; #else /* HAVE ALSA */ -AudioOutputPlugin alsaPlugin = -{ - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL /* sendMetadataFunc */ -}; +DISABLED_AUDIO_OUTPUT_PLUGIN(alsaPlugin) #endif /* HAVE_ALSA */ - - diff --git a/src/audioOutputs/audioOutput_ao.c b/src/audioOutputs/audioOutput_ao.c index d198a8e1b..1df7a5f3e 100644 --- a/src/audioOutputs/audioOutput_ao.c +++ b/src/audioOutputs/audioOutput_ao.c @@ -244,24 +244,13 @@ AudioOutputPlugin aoPlugin = audioOutputAo_play, audioOutputAo_dropBufferedAudio, audioOutputAo_closeDevice, - NULL /* sendMetadataFunc */ + NULL, /* sendMetadataFunc */ }; #else #include <stdio.h> -AudioOutputPlugin aoPlugin = -{ - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL -}; +DISABLED_AUDIO_OUTPUT_PLUGIN(aoPlugin) #endif diff --git a/src/audioOutputs/audioOutput_mvp.c b/src/audioOutputs/audioOutput_mvp.c index b8688836c..0b4c55f42 100644 --- a/src/audioOutputs/audioOutput_mvp.c +++ b/src/audioOutputs/audioOutput_mvp.c @@ -274,23 +274,11 @@ AudioOutputPlugin mvpPlugin = mvp_playAudio, mvp_dropBufferedAudio, mvp_closeDevice, - NULL /* sendMetadataFunc */ + NULL, /* sendMetadataFunc */ }; #else /* HAVE_MVP */ -AudioOutputPlugin mvpPlugin = -{ - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL /* sendMetadataFunc */ -}; +DISABLED_AUDIO_OUTPUT_PLUGIN(mvpPlugin) #endif /* HAVE_MVP */ - diff --git a/src/audioOutputs/audioOutput_oss.c b/src/audioOutputs/audioOutput_oss.c index 83273d510..3f11adb0c 100644 --- a/src/audioOutputs/audioOutput_oss.c +++ b/src/audioOutputs/audioOutput_oss.c @@ -555,24 +555,11 @@ AudioOutputPlugin ossPlugin = oss_playAudio, oss_dropBufferedAudio, oss_closeDevice, - NULL /* sendMetadataFunc */ + NULL, /* sendMetadataFunc */ }; #else /* HAVE OSS */ -AudioOutputPlugin ossPlugin = -{ - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL /* sendMetadataFunc */ -}; +DISABLED_AUDIO_OUTPUT_PLUGIN(ossPlugin) #endif /* HAVE_OSS */ - - diff --git a/src/audioOutputs/audioOutput_osx.c b/src/audioOutputs/audioOutput_osx.c index bcf9e453c..8b0f5a9a6 100644 --- a/src/audioOutputs/audioOutput_osx.c +++ b/src/audioOutputs/audioOutput_osx.c @@ -351,24 +351,13 @@ AudioOutputPlugin osxPlugin = osx_play, osx_dropBufferedAudio, osx_closeDevice, - NULL /* sendMetadataFunc */ + NULL, /* sendMetadataFunc */ }; #else #include <stdio.h> -AudioOutputPlugin osxPlugin = -{ - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL -}; +DISABLED_AUDIO_OUTPUT_PLUGIN(osxPlugin) #endif diff --git a/src/audioOutputs/audioOutput_pulse.c b/src/audioOutputs/audioOutput_pulse.c index 0943c530f..d2a794429 100644 --- a/src/audioOutputs/audioOutput_pulse.c +++ b/src/audioOutputs/audioOutput_pulse.c @@ -196,16 +196,6 @@ AudioOutputPlugin pulsePlugin = { #else /* HAVE_PULSE */ -AudioOutputPlugin pulsePlugin = -{ - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, -}; +DISABLED_AUDIO_OUTPUT_PLUGIN(pulsePlugin) #endif /* HAVE_PULSE */ diff --git a/src/audioOutputs/audioOutput_shout.c b/src/audioOutputs/audioOutput_shout.c index 0196f3264..b1586f6be 100644 --- a/src/audioOutputs/audioOutput_shout.c +++ b/src/audioOutputs/audioOutput_shout.c @@ -604,22 +604,11 @@ AudioOutputPlugin shoutPlugin = myShout_play, myShout_dropBufferedAudio, myShout_closeDevice, - myShout_setTag + myShout_setTag, }; #else -AudioOutputPlugin shoutPlugin = -{ - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL, - NULL -}; +DISABLED_AUDIO_OUTPUT_PLUGIN(shoutPlugin) #endif |