Merge pull request #3108 from pkviet/macdevice

mac-capture: Add several virtual audio drivers to Desktop audio
This commit is contained in:
Jim 2020-07-10 19:20:49 -07:00 committed by GitHub
commit e055a1ffd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -11,7 +11,10 @@ static inline bool device_is_input(char *device)
{
return astrstri(device, "soundflower") == NULL &&
astrstri(device, "wavtap") == NULL &&
astrstri(device, "soundsiphon") == NULL;
astrstri(device, "soundsiphon") == NULL &&
astrstri(device, "ishowu") == NULL &&
astrstri(device, "blackhole") == NULL &&
astrstri(device, "loopback") == NULL;
}
static inline bool enum_success(OSStatus stat, const char *msg)