提交 1a70ae01 编写于 作者: J jp9000

libobs: Add missing function definition

obs_get_source_defaults was missing the definition for the function.
上级 0d8ae565
......@@ -369,6 +369,13 @@ obs_data_t *obs_source_settings(enum obs_source_type type, const char *id)
return (info) ? get_defaults(info) : NULL;
}
obs_data_t *obs_get_source_defaults(enum obs_source_type type,
const char *id)
{
const struct obs_source_info *info = get_source_info(type, id);
return info ? get_defaults(info) : NULL;
}
obs_properties_t *obs_get_source_properties(enum obs_source_type type,
const char *id)
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册