diff options
author | Dustin Puckett <puckett@pobox.com> | 2011-01-28 21:17:09 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2011-01-28 21:17:09 +0100 |
commit | 79e0db4ca0e9c13ca226c06c9228d5afb4c9a277 (patch) | |
tree | bfc4558121f6f6f1e71bf2fc1d43e0be469d2c10 /src/output_list.c | |
parent | 9ae3acf2e73f63550218c2af92243490a4344426 (diff) | |
download | mpd-79e0db4ca0e9c13ca226c06c9228d5afb4c9a277.tar.gz mpd-79e0db4ca0e9c13ca226c06c9228d5afb4c9a277.tar.xz mpd-79e0db4ca0e9c13ca226c06c9228d5afb4c9a277.zip |
output/raop: new output plugin
Remote Audio Output Protocol (RAOP), for Apple devices.
Diffstat (limited to 'src/output_list.c')
-rw-r--r-- | src/output_list.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/output_list.c b/src/output_list.c index 8238f581b..a5001bb66 100644 --- a/src/output_list.c +++ b/src/output_list.c @@ -30,6 +30,7 @@ extern const struct audio_output_plugin ao_output_plugin; extern const struct audio_output_plugin oss_output_plugin; extern const struct audio_output_plugin openal_output_plugin; extern const struct audio_output_plugin osxPlugin; +extern const struct audio_output_plugin raopPlugin; extern const struct audio_output_plugin solaris_output_plugin; extern const struct audio_output_plugin pulse_output_plugin; extern const struct audio_output_plugin mvp_output_plugin; @@ -65,6 +66,9 @@ const struct audio_output_plugin *audio_output_plugins[] = { #ifdef HAVE_OSX &osxPlugin, #endif +#ifdef ENABLE_RAOP_OUTPUT + &raopPlugin, +#endif #ifdef ENABLE_SOLARIS_OUTPUT &solaris_output_plugin, #endif |