UI: Remove obs_source_add and sourceSceneRefs variable

Prunes code used to workaround libobs "user sources" (such as
sourceSceneRefs) and instead simply holds its own references and saves
sources it chooses with obs_save_sources_filtered.
This commit is contained in:
jp9000
2015-12-05 05:58:05 -08:00
parent e3795a2187
commit 3c83be374e
4 changed files with 36 additions and 95 deletions

View File

@@ -1543,14 +1543,6 @@ void OBSBasicSettings::LoadAudioSources()
return true;
};
for (int i = 0; i < MAX_CHANNELS; i++) {
obs_source_t *source = obs_get_output_source(i);
if (!source) continue;
AddSource(source);
obs_source_release(source);
}
using AddSource_t = decltype(AddSource);
obs_enum_sources([](void *data, obs_source_t *source)
{