libobs: Rename obs_audio_monitoring_supported to _available

With the reasonable possibility of monitoring support becoming a
runtime check, the phrase `available` is more fitting.
This commit is contained in:
tt2468
2021-12-21 19:08:14 -08:00
committed by Jim
parent 5646981ce5
commit 167f539416
13 changed files with 27 additions and 27 deletions

View File

@@ -2298,7 +2298,7 @@ bool obs_set_audio_monitoring_device(const char *name, const char *id)
if (!name || !id || !*name || !*id)
return false;
if (!obs_audio_monitoring_supported())
if (!obs_audio_monitoring_available())
return false;
pthread_mutex_lock(&obs->audio.monitoring_mutex);