libobs: Don't track active transitions

This was originally used for calculating audio volume if transitions
were active, but transitions won't work that way so tracking the active
transitions is no longer needed.
This commit is contained in:
jp9000
2015-12-17 03:51:32 -08:00
parent fc057f6d88
commit a702d88c25
3 changed files with 0 additions and 27 deletions

View File

@@ -26,25 +26,6 @@ static inline void calculate_base_volume(struct obs_core_data *data,
{
if (!target->activate_refs) {
target->base_volume = 0.0f;
/* only walk the tree if there are transitions active */
} else if (data->active_transitions) {
float best_vol = 0.0f;
for (size_t i = 0; i < MAX_CHANNELS; i++) {
struct obs_source *source = view->channels[i];
float vol = 0.0f;
if (!source)
continue;
vol = obs_source_get_target_volume(source, target);
if (best_vol < vol)
best_vol = vol;
}
target->base_volume = best_vol;
} else {
target->base_volume = 1.0f;
}