mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-29 20:01:44 -04: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:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user