mirror of
https://github.com/obsproject/obs-studio.git
synced 2025-12-27 23:45:48 +00:00
libobs: Add devices_match to null monitor
This adds the devices_match function to null monitor to fix linking issues on linux when pulse audio is disabled. Fixes #12810 Signed-off-by: pkv <pkv@obsproject.com>
This commit is contained in:
parent
b6524fef5a
commit
4ea2074eed
@ -26,3 +26,10 @@ void audio_monitor_destroy(struct audio_monitor *monitor)
|
||||
{
|
||||
UNUSED_PARAMETER(monitor);
|
||||
}
|
||||
|
||||
bool devices_match(const char *id1, const char *id2)
|
||||
{
|
||||
UNUSED_PARAMETER(id1);
|
||||
UNUSED_PARAMETER(id2);
|
||||
return false;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user