aboutsummaryrefslogtreecommitdiffstats
path: root/src/audio.c
diff options
context:
space:
mode:
authorWarren Dukes <warren.dukes@gmail.com>2005-08-11 12:34:38 +0000
committerWarren Dukes <warren.dukes@gmail.com>2005-08-11 12:34:38 +0000
commitdee9ab5ecde5161c0ffbd7d849cbe337a8a20084 (patch)
tree2b003a35b5654b13690d9a2785d49d39adfc4ae1 /src/audio.c
parent6723e65cdf911de203fe20a72f17ee5f3bf73158 (diff)
downloadmpd-dee9ab5ecde5161c0ffbd7d849cbe337a8a20084.tar.gz
mpd-dee9ab5ecde5161c0ffbd7d849cbe337a8a20084.tar.xz
mpd-dee9ab5ecde5161c0ffbd7d849cbe337a8a20084.zip
patch from Oliver Logghe for Hauppage Media MVP support
git-svn-id: https://svn.musicpd.org/mpd/trunk@3432 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 8f67c17f7..277ab6cf0 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -60,6 +60,7 @@ extern AudioOutputPlugin alsaPlugin;
extern AudioOutputPlugin aoPlugin;
extern AudioOutputPlugin ossPlugin;
extern AudioOutputPlugin osxPlugin;
+extern AudioOutputPlugin mvpPlugin;
extern AudioOutputPlugin shoutPlugin;
/* make sure initPlayerData is called before this function!! */
@@ -72,6 +73,7 @@ void initAudioDriver() {
loadAudioOutputPlugin(&aoPlugin);
loadAudioOutputPlugin(&ossPlugin);
loadAudioOutputPlugin(&osxPlugin);
+ loadAudioOutputPlugin(&mvpPlugin);
loadAudioOutputPlugin(&shoutPlugin);
pdAudioDevicesEnabled = (getPlayerData())->audioDeviceEnabled;