From 6df5a985347ec6e5e40b0a06b3bd42989e9f56b5 Mon Sep 17 00:00:00 2001 From: eightball567 Date: Wed, 9 Mar 2022 09:48:23 +0100 Subject: [PATCH] mac-capture: Add vbcable to whitelist for loopback devices --- 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 4b0feb9b8..052979e34 100644 --- a/plugins/mac-capture/audio-device-enum.c +++ b/plugins/mac-capture/audio-device-enum.c @@ -15,7 +15,8 @@ static inline bool device_is_input(char *device) astrstri(device, "ishowu") == NULL && astrstri(device, "blackhole") == NULL && astrstri(device, "loopback") == NULL && - astrstri(device, "groundcontrol") == NULL; + astrstri(device, "groundcontrol") == NULL && + astrstri(device, "vbcable") == NULL; } static inline bool enum_success(OSStatus stat, const char *msg)