From ec0bf68e4af718c2bfdfdb7777bf871f272df992 Mon Sep 17 00:00:00 2001 From: GingerAudio <80690154+GingerAudio@users.noreply.github.com> Date: Mon, 12 Apr 2021 23:51:51 +0300 Subject: [PATCH] mac-capture: Add another virtual output loopback device Adds "GroundControl" fake output device for audio loopback on macOS. --- plugins/mac-capture/audio-device-enum.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/mac-capture/audio-device-enum.c b/plugins/mac-capture/audio-device-enum.c index 61f183789..4b0feb9b8 100644 --- a/plugins/mac-capture/audio-device-enum.c +++ b/plugins/mac-capture/audio-device-enum.c @@ -14,7 +14,8 @@ static inline bool device_is_input(char *device) astrstri(device, "soundsiphon") == NULL && astrstri(device, "ishowu") == NULL && astrstri(device, "blackhole") == NULL && - astrstri(device, "loopback") == NULL; + astrstri(device, "loopback") == NULL && + astrstri(device, "groundcontrol") == NULL; } static inline bool enum_success(OSStatus stat, const char *msg)