mac-capture: Add another virtual output loopback device

Adds "GroundControl" fake output device for audio loopback on macOS.
This commit is contained in:
GingerAudio 2021-04-12 23:51:51 +03:00 committed by Jim
parent 7b2b723270
commit ec0bf68e4a

View File

@ -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)