diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-02 12:46:52 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-02 12:46:52 +0000 |
commit | 0adfd8ae76cb669cde111b87ada8481aa9354e6e (patch) | |
tree | b5c6830df92d8525621942440dce73e8bf75b461 /src/audioOutput/audioOutput_shout.c | |
parent | ebc4418e01a4c2292462b79283219d1652174d9f (diff) | |
download | mpd-0adfd8ae76cb669cde111b87ada8481aa9354e6e.tar.gz mpd-0adfd8ae76cb669cde111b87ada8481aa9354e6e.tar.xz mpd-0adfd8ae76cb669cde111b87ada8481aa9354e6e.zip |
move audioOutput plugins to audioOutput directory
git-svn-id: https://svn.musicpd.org/mpd/trunk@2470 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/audioOutput/audioOutput_shout.c (renamed from src/audioOutput_shout.c) | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/audioOutput_shout.c b/src/audioOutput/audioOutput_shout.c index 7ffdbb31b..8b8e789fb 100644 --- a/src/audioOutput_shout.c +++ b/src/audioOutput/audioOutput_shout.c @@ -16,18 +16,17 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include "../config.h" +#include "../audioOutput.h" -#include "audioOutput.h" +#include <stdlib.h> #ifdef HAVE_SHOUT -#include "conf.h" -#include "log.h" -#include "sig_handlers.h" -#include "pcm_utils.h" +#include "../conf.h" +#include "../log.h" +#include "../sig_handlers.h" +#include "../pcm_utils.h" -#include <stdlib.h> #include <string.h> #include <assert.h> #include <signal.h> @@ -568,8 +567,6 @@ AudioOutputPlugin shoutPlugin = #else -#include <stdlib.h> - AudioOutputPlugin shoutPlugin = { NULL, |