Currently, ifdefs are used to determine if monitoring is supported. This is difficult to maintain and restricts plugins from knowing if monitoring is supported by OBS. This adds a runtime function to fix that issue.
7 lines
93 B
C
7 lines
93 B
C
#include "../../obs-internal.h"
|
|
|
|
bool obs_audio_monitoring_supported(void)
|
|
{
|
|
return true;
|
|
}
|