libobs: Add API to mute/unmute sources

This commit is contained in:
jp9000
2015-03-22 14:54:07 -07:00
parent f04ef236ac
commit e31fea66be
4 changed files with 33 additions and 1 deletions

View File

@@ -828,6 +828,9 @@ EXPORT obs_source_t *obs_source_get_filter_by_name(obs_source_t *source,
EXPORT bool obs_source_enabled(const obs_source_t *source);
EXPORT void obs_source_set_enabled(obs_source_t *source, bool enabled);
EXPORT bool obs_source_muted(const obs_source_t *source);
EXPORT void obs_source_set_muted(obs_source_t *source, bool muted);
/* ------------------------------------------------------------------------- */
/* Functions used by sources */