Commit e1701d29 authored by Warren Dukes's avatar Warren Dukes

stub audioOutput plugin for shout

git-svn-id: https://svn.musicpd.org/mpd/trunk@2283 09075e82-0dd4-0310-85a5-a0d7c8717e4f
parent 2525cf12
...@@ -58,6 +58,7 @@ mpd_SOURCES = \ ...@@ -58,6 +58,7 @@ mpd_SOURCES = \
audio.c \ audio.c \
audioOutput.c \ audioOutput.c \
audioOutput_ao.c \ audioOutput_ao.c \
audioOutput_shout.c \
buffer2array.c \ buffer2array.c \
charConv.c \ charConv.c \
command.c \ command.c \
......
...@@ -40,10 +40,12 @@ static void copyAudioFormat(AudioFormat * dest, AudioFormat * src) { ...@@ -40,10 +40,12 @@ static void copyAudioFormat(AudioFormat * dest, AudioFormat * src) {
} }
extern AudioOutputPlugin aoPlugin; extern AudioOutputPlugin aoPlugin;
extern AudioOutputPlugin shoutPlugin;
void initAudioDriver() { void initAudioDriver() {
initAudioOutputPlugins(); initAudioOutputPlugins();
loadAudioOutputPlugin(&aoPlugin); loadAudioOutputPlugin(&aoPlugin);
loadAudioOutputPlugin(&shoutPlugin);
aoOutput = newAudioOutput("ao"); aoOutput = newAudioOutput("ao");
assert(aoOutput); assert(aoOutput);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment