diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-11-02 02:03:00 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-11-02 02:03:00 +0000 |
commit | c269e18813f0f08c957f5c490c02bf4fa9092343 (patch) | |
tree | 46cb4b2427d4e5a634ef7005f1e703c822898f26 /src/audio.c | |
parent | b0d7d6b06fffe784d49d34f1a715ba0ff07d0bd4 (diff) | |
download | mpd-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.c | 2 |
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++; |