提交 56dc6054 编写于 作者: J jp9000

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)
上级 a4e0cd71
......@@ -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"))
......
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册