libobs: Add obs_is_source_configurable function

Mostly only used for transitions with the intention of automatically
creating transitions which don't require configuration, returns whether
the source has any properties or not (whether it's configurable)
This commit is contained in:
jp9000 2016-01-10 17:07:01 -08:00
parent a4e0cd71b8
commit 56dc605497
2 changed files with 17 additions and 0 deletions

View file

@ -586,6 +586,18 @@ obs_properties_t *obs_get_source_properties(const char *id)
return NULL;
}
bool obs_is_source_configurable(const char *id)
{
const struct obs_source_info *info = get_source_info(id);
return info && info->get_properties;
}
bool obs_source_configurable(const obs_source_t *source)
{
return data_valid(source, "obs_source_configurable") &&
source->info.get_properties;
}
obs_properties_t *obs_source_properties(const obs_source_t *source)
{
if (!data_valid(source, "obs_source_properties"))

View file

@ -685,6 +685,11 @@ EXPORT obs_data_t *obs_get_source_defaults(const char *id);
/** Returns the property list, if any. Free with obs_properties_destroy */
EXPORT obs_properties_t *obs_get_source_properties(const char *id);
/** Returns whether the source has custom properties or not */
EXPORT bool obs_is_source_configurable(const char *id);
EXPORT bool obs_source_configurable(const obs_source_t *source);
/**
* Returns the properties list for a specific existing source. Free with
* obs_properties_destroy