aboutsummaryrefslogtreecommitdiffstats
path: root/src/audio.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2004-11-02 02:03:00 +0000
committerWarren Dukes <warren.dukes@gmail.com>2004-11-02 02:03:00 +0000
commitc269e18813f0f08c957f5c490c02bf4fa9092343 (patch)
tree46cb4b2427d4e5a634ef7005f1e703c822898f26 /src/audio.c
parentb0d7d6b06fffe784d49d34f1a715ba0ff07d0bd4 (diff)
downloadmpd-c269e18813f0f08c957f5c490c02bf4fa9092343.tar.gz
mpd-c269e18813f0f08c957f5c490c02bf4fa9092343.tar.xz
mpd-c269e18813f0f08c957f5c490c02bf4fa9092343.zip
now np's OSS stuff actually works
git-svn-id: https://svn.musicpd.org/mpd/trunk@2459 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audio.c')
-rw-r--r--src/audio.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/audio.c b/src/audio.c
index 9df190dd5..0dd1469b1 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -44,6 +44,7 @@ static int audioOutputArraySize = 0;
extern AudioOutputPlugin aoPlugin;
extern AudioOutputPlugin shoutPlugin;
+extern AudioOutputPlugin ossPlugin;
void initAudioDriver() {
ConfigParam * param = NULL;
@@ -52,6 +53,7 @@ void initAudioDriver() {
initAudioOutputPlugins();
loadAudioOutputPlugin(&aoPlugin);
loadAudioOutputPlugin(&shoutPlugin);
+ loadAudioOutputPlugin(&ossPlugin);
while((param = getNextConfigParam(CONF_AUDIO_OUTPUT, param))) {
i = audioOutputArraySize++;