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:
pkv 2025-11-12 19:59:11 +01:00 committed by Ryan Foster
parent b6524fef5a
commit 4ea2074eed

View File

@ -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;
}