diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-10-20 16:48:22 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-10-20 16:48:22 +0000 |
commit | f4d75d7596c02ed1cc6ff30310268eacfc6e75a8 (patch) | |
tree | 0f229d564f7963cc2710326547683e52d037fd4b /src/audioOutput.c | |
parent | ce5773848cb297043bda7a0ab0cc3e0081bffdcf (diff) | |
download | mpd-f4d75d7596c02ed1cc6ff30310268eacfc6e75a8.tar.gz mpd-f4d75d7596c02ed1cc6ff30310268eacfc6e75a8.tar.xz mpd-f4d75d7596c02ed1cc6ff30310268eacfc6e75a8.zip |
ok, now we're using some of the new audioOutput layer stuff, needs some serious testing, and there maybe some serios BREAKAGE
git-svn-id: https://svn.musicpd.org/mpd/trunk@2279 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/audioOutput.c')
-rw-r--r-- | src/audioOutput.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/audioOutput.c b/src/audioOutput.c index ff0c614a2..1165f247e 100644 --- a/src/audioOutput.c +++ b/src/audioOutput.c @@ -32,6 +32,7 @@ AudioOutput * newAudioOutput(char * name) { ret->openDeviceFunc = plugin->openDeviceFunc; ret->playFunc = plugin->playFunc; ret->closeDeviceFunc = plugin->closeDeviceFunc; + ret->open = 0; plugin->initDriverFunc(ret); } |