From 8dbb0cff6b97d25a73684a37db3fbf4c2bd0568b Mon Sep 17 00:00:00 2001 From: Luke Yelavich Date: Fri, 9 Jan 2015 08:12:51 +1100 Subject: [PATCH] mac-capture: Add Sound Siphon as a supported audio routing device Add support for Static Z Software's Sound Siphon audio routing software (http://staticz.com/soundsiphon/) which provides more advanced audio routing possibilities. --- plugins/mac-capture/audio-device-enum.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/plugins/mac-capture/audio-device-enum.c b/plugins/mac-capture/audio-device-enum.c index f41764936..38cdab664 100644 --- a/plugins/mac-capture/audio-device-enum.c +++ b/plugins/mac-capture/audio-device-enum.c @@ -5,11 +5,12 @@ #include "audio-device-enum.h" /* ugh, because mac has no means of capturing output, we have to basically - * mark soundflower and wavtap as output devices. */ + * mark soundflower, wavtap and sound siphon as output devices. */ static inline bool device_is_input(char *device) { return astrstri(device, "soundflower") == NULL && - astrstri(device, "wavtap") == NULL; + astrstri(device, "wavtap") == NULL && + astrstri(device, "soundsiphon") == NULL; } static inline bool enum_success(OSStatus stat, const char *msg)